sajt/types/utils.d.ts

12 lines
543 B
TypeScript
Raw Normal View History

2025-02-24 18:46:31 +01:00
export declare function getAllFilesWithExtension(directory: string, extension: string, excludes: string[]): string[];
export declare function cp(source: string, destination: string): void;
2025-06-08 21:57:33 +02:00
declare function removeDirectorySync(directory: string): void;
2025-02-24 18:46:31 +01:00
export declare function pathToArray(filePath: string): string[];
2025-06-08 21:57:33 +02:00
declare const _default: {
pathToArray: typeof pathToArray;
cp: typeof cp;
getAllFilesWithExtension: typeof getAllFilesWithExtension;
removeDirectorySync: typeof removeDirectorySync;
};
export default _default;