UNPKG

@ccms/nodejs

Version:

MiaoScript nodejs package

31 lines 1.22 kB
/// <reference types="node" /> /// <reference types="node" /> import '@ccms/nashorn'; import { URL } from "url"; /** * Valid types for path values in "fs". */ type PathLike = string | Buffer | URL; export declare function renameSync(oldPath: PathLike, newPath: PathLike): void; export declare function truncateSync(): void; export declare function chownSync(): void; export declare function chmodSync(): void; export declare function statSync(): void; export declare function symlinkSync(): void; export declare function readlinkSync(): void; export declare function realpathSync(): void; export declare function unlinkSync(): void; export declare function rmdirSync(): void; export declare function mkdirSync(): void; export declare function mkdtempSync(): void; export declare function readdirSync(): void; export declare function readFileSync(): void; export declare function writeFileSync(): void; export declare function appendFileSync(): void; export declare function watchFile(): void; export declare function unwatchFile(): void; export declare function existsSync(): void; export declare function accessSync(): void; export declare function copyFileSync(): void; export {}; //# sourceMappingURL=index.d.ts.map