ableton-parser
Version:
A NodeJs based Ableton parser to parse ableton-live files(*als)
8 lines (7 loc) • 544 B
TypeScript
export declare function copyFileAsync(src: string, dst: string): Promise<any>;
export declare function extractGz(src: string, dst: string): Promise<any>;
export declare function fileExists(file: string): boolean;
export declare function readFileAsync(file: string): Promise<any>;
export declare function writeFileAsync(file: string, data: string): Promise<any>;
export declare function getType(file: string): Promise<import("file-type/core").FileTypeResult | undefined>;
export declare function changeExt(file: string, newExt: string): string;