Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/escalade/index.d.ts

    rd565449 r0c6b92a  
    11type Promisable<T> = T | Promise<T>;
    2 export type Callback = (directory: string, files: string[]) => Promisable<string | false | void>;
    3 export default function (directory: string, callback: Callback): Promise<string | void>;
     2
     3declare namespace escalade {
     4        export type Callback = (
     5                directory: string,
     6                files: string[],
     7        ) => Promisable<string | false | void>;
     8}
     9
     10declare function escalade(
     11        directory: string,
     12        callback: escalade.Callback,
     13): Promise<string | void>;
     14
     15export = escalade;
Note: See TracChangeset for help on using the changeset viewer.