zksync-cli
Version:
CLI tool that simplifies the process of developing applications and interacting with the ZKsync network
7 lines (6 loc) • 503 B
TypeScript
export declare const getLocalPath: (...filePath: string[]) => string;
export declare const fileOrDirExists: (...filePath: string[]) => boolean;
export declare const getDirPath: (filePath: string) => string;
export declare const writeFile: (filePath: string, data: string | NodeJS.ArrayBufferView) => void;
export declare const createSymlink: (targetPath: string, linkPath: string, type?: "file" | "dir" | "junction") => void;
export declare const copyRecursiveSync: (src: string, dest: string) => void;