index.d.ts 138 B

123456
  1. interface Item {
  2. path: string;
  3. code: string;
  4. }
  5. export declare function createFile(data: Item | Item[]): Promise<void>;
  6. export {};