@salesforce/plugin-apex
Version:
6 lines (5 loc) • 359 B
TypeScript
/** one or more functions that have the same signature, returns one composed function that does them all sequentially */
export declare const compose: <R>(fn1: (a: R) => R, ...fns: Array<(a: R) => R>) => ((a: R) => R);
/** all colorizers in one */
export declare const colorize: (a: string) => string;
export declare const colorLogs: (log: string) => string;