Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
fast-glob /
out /
[ HOME SHELL ]
Name
Size
Permission
Action
managers
[ DIR ]
drwxr-xr-x
providers
[ DIR ]
drwxr-xr-x
readers
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
index.d.ts
1.64
KB
-rw-r--r--
index.js
2.69
KB
-rw-r--r--
index.spec.d.ts
11
B
-rw-r--r--
index.spec.js
7.18
KB
-rw-r--r--
settings.d.ts
4.04
KB
-rw-r--r--
settings.js
2.46
KB
-rw-r--r--
settings.spec.d.ts
11
B
-rw-r--r--
settings.spec.js
2.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
/// <reference types="node" /> import * as taskManager from './managers/tasks'; import { Options as OptionsInternal } from './settings'; import { Entry as EntryInternal, FileSystemAdapter as FileSystemAdapterInternal, Pattern as PatternInternal } from './types'; declare type EntryObjectModePredicate = { [TKey in keyof Pick<OptionsInternal, 'objectMode'>]-?: true; }; declare type EntryStatsPredicate = { [TKey in keyof Pick<OptionsInternal, 'stats'>]-?: true; }; declare type EntryObjectPredicate = EntryObjectModePredicate | EntryStatsPredicate; declare function FastGlob(source: PatternInternal | PatternInternal[], options: OptionsInternal & EntryObjectPredicate): Promise<EntryInternal[]>; declare function FastGlob(source: PatternInternal | PatternInternal[], options?: OptionsInternal): Promise<string[]>; declare namespace FastGlob { type Options = OptionsInternal; type Entry = EntryInternal; type Task = taskManager.Task; type Pattern = PatternInternal; type FileSystemAdapter = FileSystemAdapterInternal; function sync(source: PatternInternal | PatternInternal[], options: OptionsInternal & EntryObjectPredicate): EntryInternal[]; function sync(source: PatternInternal | PatternInternal[], options?: OptionsInternal): string[]; function stream(source: PatternInternal | PatternInternal[], options?: OptionsInternal): NodeJS.ReadableStream; function generateTasks(source: PatternInternal | PatternInternal[], options?: OptionsInternal): Task[]; function isDynamicPattern(source: PatternInternal, options?: OptionsInternal): boolean; function escapePath(source: PatternInternal): PatternInternal; } export = FastGlob;
Close