Changeset 0c6b92a for imaps-frontend/node_modules/escalade/sync/index.d.ts
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/escalade/sync/index.d.ts
rd565449 r0c6b92a 1 export type Callback = (directory: string, files: string[]) => string | false | void; 2 export default function (directory: string, callback: Callback): string | void; 1 declare namespace escalade { 2 export type Callback = ( 3 directory: string, 4 files: string[], 5 ) => string | false | void; 6 } 7 8 declare function escalade( 9 directory: string, 10 callback: escalade.Callback, 11 ): string | void; 12 13 export = escalade;
Note:
See TracChangeset
for help on using the changeset viewer.