UNPKG

@tech-bureau/mijin-catapult-tools

Version:

This tool is for easy operation of mijin Catapult(v.2)

9 lines 625 B
import { ConfigFile } from './types'; export declare const readConfig: (filename: string) => Promise<ConfigFile>; export declare const writeConfig: (filename: string, data: string) => Promise<void>; export declare const writeFile: (filename: string, data: string | Uint8Array) => Promise<void>; export declare const readFile: (filename: string) => Promise<string>; export declare const checkFile: (filename: string) => Promise<boolean>; export declare const checkDir: (filepath: string) => Promise<boolean>; export declare const createDir: (dirpath: string) => Promise<string | undefined>; //# sourceMappingURL=utils.d.ts.map