UNPKG

291 BTypeScriptView Raw
1// Commmon function signature
2declare function f(prefix?: string, suffix?: string): string;
3
4// let x -> Workaround for ES6 imports
5// Combined type because of assigning to function object in original module
6declare let x: typeof f & { process: typeof f } & { time: typeof f };
7
8export = x;