Files
eibons ce999372ae init
2025-08-15 21:37:29 +08:00

7 lines
138 B
TypeScript

interface Item {
path: string;
code: string;
}
export declare function createFile(data: Item | Item[]): Promise<void>;
export {};