Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
minimist-options /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.66
KB
-rw-r--r--
index.js
2.71
KB
-rw-r--r--
package.json
661
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
import {Opts as MinimistOptions} from 'minimist'; export type OptionType = 'string' | 'boolean' | 'number' | 'array' | 'string-array' | 'boolean-array' | 'number-array'; export interface BaseOption< TypeOptionType extends OptionType, DefaultOptionType > { /** * The data type the option should be parsed to. */ readonly type?: TypeOptionType; /** * An alias/list of aliases for the option. */ readonly alias?: string | ReadonlyArray<string>; /** * The default value for the option. */ readonly default?: DefaultOptionType; } export type StringOption = BaseOption<'string', string>; export type BooleanOption = BaseOption<'boolean', boolean>; export type NumberOption = BaseOption<'number', number>; export type DefaultArrayOption = BaseOption<'array', ReadonlyArray<string>>; export type StringArrayOption = BaseOption<'string-array', ReadonlyArray<string>>; export type BooleanArrayOption = BaseOption<'boolean-array', ReadonlyArray<boolean>>; export type NumberArrayOption = BaseOption<'number-array', ReadonlyArray<number>>; type MinimistOption = NonNullable< | MinimistOptions['stopEarly'] | MinimistOptions['unknown'] | MinimistOptions['--'] >; export type Options = { [key: string]: | OptionType | StringOption | BooleanOption | NumberOption | DefaultArrayOption | StringArrayOption | BooleanArrayOption | NumberArrayOption | MinimistOption; // Workaround for https://github.com/microsoft/TypeScript/issues/17867 }; /** * Write options for [minimist](https://npmjs.org/package/minimist) in a comfortable way. Support string, boolean, number and array options. */ export default function buildOptions(options?: Options): MinimistOptions;
Close