Spaces:
Sleeping
Sleeping
File size: 245 Bytes
f9f0fec |
1 2 3 4 5 6 7 |
declare namespace _exports {
export { Func };
}
declare const _exports: <T extends Func = Func>(fn: T, length: number, loose?: boolean) => T;
export = _exports;
type Func = (...args: unknown[]) => unknown;
//# sourceMappingURL=index.d.ts.map |