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