Refactoring
This commit is contained in:
parent
1e3833f7d0
commit
aa563e60ea
37 changed files with 472 additions and 2392 deletions
9
types/utils.d.ts
vendored
9
types/utils.d.ts
vendored
|
@ -1,4 +1,11 @@
|
|||
export declare function parseYML(file: string): unknown;
|
||||
export declare function getAllFilesWithExtension(directory: string, extension: string, excludes: string[]): string[];
|
||||
export declare function cp(source: string, destination: string): void;
|
||||
declare function removeDirectorySync(directory: string): void;
|
||||
export declare function pathToArray(filePath: string): string[];
|
||||
declare const _default: {
|
||||
pathToArray: typeof pathToArray;
|
||||
cp: typeof cp;
|
||||
getAllFilesWithExtension: typeof getAllFilesWithExtension;
|
||||
removeDirectorySync: typeof removeDirectorySync;
|
||||
};
|
||||
export default _default;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue