trufs
Version:
Trusty file methods.
18 lines (17 loc) • 613 B
text/typescript
import * as Atomically from "atomically";
import { ReadOptions as ReadOptions$1, WriteOptions as WriteOptions$1 } from "atomically";
import * as FSExtra from "fs-extra";
import * as GracefulFS from "graceful-fs";
//#region src/types/fs.d.ts
type Fs = typeof Atomically & typeof FSExtra & typeof GracefulFS;
//#endregion
//#region src/types/read_options.d.ts
type ReadOptions = ReadOptions$1;
//#endregion
//#region src/types/write_options.d.ts
type WriteOptions = WriteOptions$1;
//#endregion
//#region src/main.d.ts
declare const fs: Fs;
//#endregion
export { type Fs, type ReadOptions, type WriteOptions, fs };