/** * A function that transforms a value of type T and returns the same type. * Used as a building block for functional composition of CDK constructs. */ export type ComposerFn = (input: T) => T; /** * Applies a sequence of composer functions to an initial value from left to right. */ export declare const compose: (initialValue: T, ...args: Array>) => T; //# sourceMappingURL=compose.d.ts.map