sajt/types/utils.d.ts
2025-06-08 21:57:33 +02:00

11 lines
543 B
TypeScript

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;