API/api.medcify.app/node_modules/snyk/dist/lib/iac/file-utils.d.ts

8 lines
453 B
TypeScript
Raw Normal View History

2022-09-26 06:11:44 +00:00
/// <reference types="node" />
export declare function isExe(path: string): Promise<boolean>;
export declare function isExists(path: string): Promise<boolean>;
export declare function createDirIfNotExists(path: string): Promise<void>;
export declare function isFile(path: string): Promise<boolean>;
export declare function isArchive(path: string): Promise<boolean>;
export declare function saveFile(dataBuffer: Buffer, savePath: string): Promise<void>;