Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
fast-glob /
out /
Delete
Unzip
Name
Size
Permission
Date
Action
managers
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
providers
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
readers
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
types
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
utils
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
index.d.ts
1.64
KB
-rw-r--r--
2024-03-21 05:18
index.js
2.8
KB
-rw-r--r--
2024-03-21 05:18
settings.d.ts
4.04
KB
-rw-r--r--
2024-03-21 05:18
settings.js
2.67
KB
-rw-r--r--
2024-03-21 05:18
Save
Rename
/// <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;