UNPKG

@quansync/fs

Version:

Filesystem utilities for Quansync

79 lines (76 loc) 3.52 kB
import { PathLike, WriteFileOptions, Stats, StatOptions, BigIntStats, RmOptions, MakeDirectoryOptions, Mode, ObjectEncodingOptions, Dirent, BufferEncodingOption } from 'node:fs'; import { Buffer } from 'node:buffer'; import { QuansyncFn } from 'quansync'; /** * @link https://nodejs.org/api/fs.html#fspromisesreadfilepath-options */ declare const readFile: QuansyncFn<Buffer, [path: PathLike, options?: { encoding?: null | undefined flag?: string | undefined } | null]> & QuansyncFn<string, [path: PathLike, options: { encoding: BufferEncoding flag?: string | undefined } | BufferEncoding]>; /** * @link https://nodejs.org/api/fs.html#fspromiseswritefilefile-data-options */ declare const writeFile: QuansyncFn<void, [file: PathLike, data: string | NodeJS.ArrayBufferView<ArrayBufferLike>, options?: WriteFileOptions | undefined]>; /** * @link https://nodejs.org/api/fs.html#fspromisesunlinkpath */ declare const unlink: QuansyncFn<void, [path: PathLike]>; /** * @link https://nodejs.org/api/fs.html#fspromisesaccesspath-mode */ declare const access: QuansyncFn<void, [path: PathLike, mode?: number | undefined]>; /** * @link https://nodejs.org/api/fs.html#fspromisesstatpath-options */ declare const stat: QuansyncFn<Stats, [path: PathLike, opts?: StatOptions & { bigint?: false | undefined }]> & QuansyncFn<BigIntStats, [path: PathLike, opts: StatOptions & { bigint: true }]> & QuansyncFn<Stats | BigIntStats, [path: PathLike, opts?: StatOptions]>; declare const lstat: typeof stat; /** * @link https://nodejs.org/api/fs.html#fspromisescpsrc-dest-options */ declare const cp: QuansyncFn<void, [src: PathLike, dest: PathLike, mode?: number | undefined]>; /** * @link https://nodejs.org/api/fs.html#fspromisesrmpath-options */ declare const rm: QuansyncFn<void, [path: PathLike, options?: RmOptions | undefined]>; /** * @link https://nodejs.org/api/fs.html#fspromisesmkdirpath-options */ declare const mkdir: QuansyncFn<string | undefined, [path: PathLike, options: MakeDirectoryOptions & { recursive: true }]> & QuansyncFn<void, [path: PathLike, options?: Mode | (MakeDirectoryOptions & { recursive?: false | undefined }) | null]>; /** * @link https://nodejs.org/api/fs.html#fspromisesrenameoldpath-newpath */ declare const rename: QuansyncFn<void, [oldPath: PathLike, newPath: PathLike]>; /** * @link https://nodejs.org/api/fs.html#fspromisesreaddirpath-options */ declare const readdir: QuansyncFn<string[], [path: PathLike, options?: (ObjectEncodingOptions & { withFileTypes?: false | undefined recursive?: boolean | undefined }) | BufferEncoding | null]> & QuansyncFn<Buffer[], [path: PathLike, options: { encoding: "buffer" withFileTypes?: false | undefined recursive?: boolean | undefined } | "buffer"]> & QuansyncFn<string[] | Buffer[], [path: PathLike, options?: (ObjectEncodingOptions & { withFileTypes?: false | undefined recursive?: boolean | undefined }) | BufferEncoding | null]> & QuansyncFn<Dirent[], [path: PathLike, options: ObjectEncodingOptions & { withFileTypes: true recursive?: boolean | undefined }]>; /** * @link https://nodejs.org/api/fs.html#fspromisesrealpathpath-options */ declare const realpath: QuansyncFn<string, [path: PathLike, options?: ObjectEncodingOptions | BufferEncoding | null]> & QuansyncFn<Buffer, [path: PathLike, options: BufferEncodingOption]> & QuansyncFn<string | Buffer, [path: PathLike, options?: ObjectEncodingOptions | BufferEncoding | null]>; export { access, cp, lstat, mkdir, readFile, readdir, realpath, rename, rm, stat, unlink, writeFile };