myathhhh
Version:
Atomicals Javascript Library and CLI - atomicals.xyz
7 lines (6 loc) • 492 B
TypeScript
export declare const fileReader: (filePath: any, encoding?: any) => Promise<unknown>;
export declare const jsonFileReader: <T extends object>(filePath: any) => Promise<T>;
export declare const jsonFileWriter: (filePath: any, data: any) => Promise<unknown>;
export declare const fileWriter: (filePath: any, data: any) => Promise<unknown>;
export declare const jsonFileExists: (filePath: any) => Promise<unknown>;
export declare function chunkBuffer(buffer: any, chunkSize: number): any;