From ae187b6d75c8079da0be1dc288613bad8466fe61 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Tue, 24 Oct 2023 17:43:37 +0200 Subject: Initial commit --- .../dir-compare/build/src/entry/entryBuilder.d.ts | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 desktop/node_modules/dir-compare/build/src/entry/entryBuilder.d.ts (limited to 'desktop/node_modules/dir-compare/build/src/entry/entryBuilder.d.ts') diff --git a/desktop/node_modules/dir-compare/build/src/entry/entryBuilder.d.ts b/desktop/node_modules/dir-compare/build/src/entry/entryBuilder.d.ts new file mode 100644 index 0000000..4782009 --- /dev/null +++ b/desktop/node_modules/dir-compare/build/src/entry/entryBuilder.d.ts @@ -0,0 +1,53 @@ +/// +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 \ No newline at end of file -- cgit