interface Transform { transform: (incoming: TIn, ...args: any[]) => TOut; } export default Transform;