Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.106
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-dispatcher /
node_modules /
arg /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE.md
1.05
KB
-rw-r--r--
2026-02-18 13:02
README.md
6.45
KB
-rw-r--r--
2026-02-18 13:02
index.d.ts
764
B
-rw-r--r--
2026-02-18 13:02
index.js
3.8
KB
-rw-r--r--
2026-02-18 13:02
package.json
1.5
KB
-rw-r--r--
2026-02-18 13:02
Save
Rename
declare const flagSymbol: unique symbol; declare function arg<T extends arg.Spec>(spec: T, options?: arg.Options): arg.Result<T>; declare namespace arg { export function flag<T>(fn: T): T & { [flagSymbol]: true }; export const COUNT: Handler<number> & { [flagSymbol]: true }; export type Handler <T = any> = (value: string, name: string, previousValue?: T) => T; export interface Spec { [key: string]: string | Handler | [Handler]; } export type Result<T extends Spec> = { _: string[] } & { [K in keyof T]?: T[K] extends Handler ? ReturnType<T[K]> : T[K] extends [Handler] ? Array<ReturnType<T[K][0]>> : never }; export interface Options { argv?: string[]; permissive?: boolean; stopAtPositional?: boolean; } } export = arg;