⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
fast-glob
/
out
/
View File Name :
index.d.ts
/// <reference types="node" /> import { IPartialOptions } from './managers/options'; import { ITask } from './managers/tasks'; import { EntryItem } from './types/entries'; import { Pattern } from './types/patterns'; /** * Synchronous API. */ export declare function sync(source: Pattern | Pattern[], opts?: IPartialOptions): EntryItem[]; /** * Asynchronous API. */ export declare function async(source: Pattern | Pattern[], opts?: IPartialOptions): Promise<EntryItem[]>; /** * Stream API. */ export declare function stream(source: Pattern | Pattern[], opts?: IPartialOptions): NodeJS.ReadableStream; /** * Return a set of tasks based on provided patterns. */ export declare function generateTasks(source: Pattern | Pattern[], opts?: IPartialOptions): ITask[];