Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.69
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
schoolms /
node_modules /
arg /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE.md
1.05
KB
-rw-rw-rw-
2025-03-24 11:44
README.md
6.49
KB
-rw-rw-rw-
2025-03-24 11:44
index.d.ts
891
B
-rw-rw-rw-
2025-03-24 11:44
index.js
4.36
KB
-rw-rw-rw-
2025-03-24 11:44
package.json
589
B
-rw-rw-rw-
2025-03-24 11:44
Save
Rename
declare function arg<T extends arg.Spec>( spec: T, options?: arg.Options ): arg.Result<T>; declare namespace arg { export const flagSymbol: unique symbol; export function flag<T>(fn: T): T & { [arg.flagSymbol]: true }; export const COUNT: Handler<number> & { [arg.flagSymbol]: true }; export type Handler<T = any> = ( value: string, name: string, previousValue?: T ) => T; export class ArgError extends Error { constructor(message: string, code: string); code: string; } 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;