Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.117.11.233
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
node-yargs /
[ HOME SHELL ]
Name
Size
Permission
Action
examples
[ DIR ]
drwxr-xr-x
CHANGELOG-historical.md.gz
22.6
KB
-rw-r--r--
CODE_OF_CONDUCT.md
3.14
KB
-rw-r--r--
README.md
3.97
KB
-rw-r--r--
advanced.md.gz
5.39
KB
-rw-r--r--
api.md.gz
13.49
KB
-rw-r--r--
changelog.Debian.gz
910
B
-rw-r--r--
contributing.md
1.04
KB
-rw-r--r--
copyright
1.49
KB
-rw-r--r--
examples.md.gz
2.03
KB
-rw-r--r--
tricks.md
2.21
KB
-rw-r--r--
typescript.md
1.41
KB
-rw-r--r--
webpack.md
1.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : typescript.md
# TypeScript usage examples The TypeScript definitions take into account yargs' `type` key and the prescense of `demandOption`/`default`. The following `.options()` definition: ```typescript #!/usr/bin/env node import yargs = require('yargs'); const argv = yargs.options({ a: { type: 'boolean', default: false }, b: { type: 'string', demandOption: true }, c: { type: 'number', alias: 'chill' }, d: { type: 'array' }, e: { type: 'count' }, f: { choices: ['1', '2', '3'] } }).argv; ``` Will result in an `argv` that's typed like so: ```typescript { [x: string]: unknown; a: boolean; b: string; c: number | undefined; d: (string | number)[] | undefined; e: number; f: string | undefined; _: string[]; $0: string; } ``` You will likely want to define an interface for your application, describing the form that the parsed `argv` will take: ```typescript interface Arguments { [x: string]: unknown; a: boolean; b: string; c: number | undefined; d: (string | number)[] | undefined; e: number; f: string | undefined; } ``` To improve the `choices` option typing you can also specify its types: ```typescript type Difficulty = 'normal' | 'nightmare' | 'hell'; const difficulties: ReadonlyArray<Difficulty> = ['normal', 'nightmare', 'hell']; const argv = yargs.option('difficulty', { choices: difficulties, demandOption: true }).argv; ``` `argv` will get type `'normal' | 'nightmare' | 'hell'`.
Close