/** * WARNING: Loading this module will perform a side-effect on the globals `Object` and `Function` * * Global `pipe` and `flow` operators */ declare global { interface Object { ['|>'](this: A, f: (a: A) => B): B; } interface Function { ['>>'], A, B>(this: (...args: Args) => A, f: (a: A) => B): (...args: Args) => B; } } export {}; //# sourceMappingURL=Operators.d.ts.map