blob: 4782009961ce4d1e49c1017bd934420115b88158 (
plain)
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
|
/// <reference types="node" />
import fs = require("fs");
/**
* Returns the sorted list of entries in a directory.
*/
export function buildDirEntries(rootEntry: any, dirEntries: any, relativePath: any, options: any): {
name: any;
absolutePath: any;
path: any;
stat: fs.Stats;
lstat: fs.Stats;
isSymlink: boolean;
isBrokenLink: boolean;
isDirectory: boolean;
isPermissionDenied: boolean;
}[];
/**
* Returns the sorted list of entries in a directory.
*/
export function buildDirEntries(rootEntry: any, dirEntries: any, relativePath: any, options: any): {
name: any;
absolutePath: any;
path: any;
stat: fs.Stats;
lstat: fs.Stats;
isSymlink: boolean;
isBrokenLink: boolean;
isDirectory: boolean;
isPermissionDenied: boolean;
}[];
export function buildEntry(absolutePath: any, path: any, name: any, options: any): {
name: any;
absolutePath: any;
path: any;
stat: fs.Stats;
lstat: fs.Stats;
isSymlink: boolean;
isBrokenLink: boolean;
isDirectory: boolean;
isPermissionDenied: boolean;
};
export function buildEntry(absolutePath: any, path: any, name: any, options: any): {
name: any;
absolutePath: any;
path: any;
stat: fs.Stats;
lstat: fs.Stats;
isSymlink: boolean;
isBrokenLink: boolean;
isDirectory: boolean;
isPermissionDenied: boolean;
};
//# sourceMappingURL=entryBuilder.d.ts.map
|