File: index.d.ts

package info (click to toggle)
node-memory-fs 0.5.0%2B~0.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 296 kB
  • sloc: javascript: 940; makefile: 2
file content (86 lines) | stat: -rwxr-xr-x 2,696 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Type definitions for memory-fs 0.3.0
// Project: https://github.com/webpack/memory-fs
// Definitions by: e-cloud <https://github.com/e-cloud>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.7

/// <reference types="node" />

declare class MemoryFileSystem {
    data: any;

    constructor(data?: any);

    meta(_path: string): any;

    existsSync(_path: string): boolean;

    statSync(_path: string): {
        isFile: () => boolean;
        isDirectory: () => boolean;
        isBlockDevice: () => boolean;
        isCharacterDevice: () => boolean;
        isSymbolicLink: () => boolean;
        isFIFO: () => boolean;
        isSocket: () => boolean;
    };

    readFileSync(_path: string, encoding?: string): any;

    readdirSync(_path: string): string[];

    mkdirpSync(_path: string): void;

    mkdirSync(_path: string): void;

    _remove(_path: string, name: string, testFn: ((part: string) => boolean)): void;

    rmdirSync(_path: string): void;

    unlinkSync(_path: string): void;

    readlinkSync(_path: string): string;

    writeFileSync(_path: string, content: string | Buffer, encoding?: string): void;

    createReadStream(
        path: string, options?: {
            start: number;
            end: number;
        }
    ): any;

    createWriteStream(path: string, options?: any): any;

    exists(path: string, callback: (isExist: boolean) => void): void;

    writeFile(path: string, content: string | Buffer, callback: (err: Error | undefined) => void): void;

    writeFile(path: string, content: string | Buffer, encoding: string, callback: (err: Error | undefined) => void): void;

    join(path: string, request: string): string;

    pathToArray(path: string): string[];

    normalize(path: string): string;

    stat(path: string, callback: (err: Error | null, result?: any) => void): void;

    readdir(path: string, callback: (err: Error | null, result?: any) => void): void;

    mkdirp(path: string, callback: (err: Error | null, result?: any) => void): void;

    rmdir(path: string, callback: (err: Error | null, result?: any) => void): void;

    unlink(path: string, callback: (err: Error | null, result?: any) => void): void;

    readlink(path: string, callback: (err: Error | null, result?: any) => void): void;

    mkdir(path: string, callback: (err: Error | null) => void): void;
    mkdir(path: string, optArg: {}, callback: (err: Error | null, result?: any) => void): void;

    readFile(path: string, callback: (err: Error | null, result?: any) => void): void;
    readFile(path: string, optArg: {}, callback: (err: Error | null, result?: any) => void): void;
}

export = MemoryFileSystem;