⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
node_modules
/
@nodelib
/
fs.walk
/
out
/
View File Name :
settings.d.ts
import * as fsScandir from '@nodelib/fs.scandir'; import type { Entry, Errno } from './types'; export declare type FilterFunction<T> = (value: T) => boolean; export declare type DeepFilterFunction = FilterFunction<Entry>; export declare type EntryFilterFunction = FilterFunction<Entry>; export declare type ErrorFilterFunction = FilterFunction<Errno>; export interface Options { basePath?: string; concurrency?: number; deepFilter?: DeepFilterFunction; entryFilter?: EntryFilterFunction; errorFilter?: ErrorFilterFunction; followSymbolicLinks?: boolean; fs?: Partial<fsScandir.FileSystemAdapter>; pathSegmentSeparator?: string; stats?: boolean; throwErrorOnBrokenSymbolicLink?: boolean; } export default class Settings { private readonly _options; readonly basePath?: string; readonly concurrency: number; readonly deepFilter: DeepFilterFunction | null; readonly entryFilter: EntryFilterFunction | null; readonly errorFilter: ErrorFilterFunction | null; readonly pathSegmentSeparator: string; readonly fsScandirSettings: fsScandir.Settings; constructor(_options?: Options); private _getValue; }