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 /
@types /
npmlog /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
2.54
KB
-rw-r--r--
package.json
959
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// Type definitions for npmlog 4.1 // Project: https://github.com/npm/npmlog#readme // Definitions by: Daniel Schmidt <https://github.com/DanielMSchmidt> // Joseph Wynn <https://github.com/wildlyinaccurate> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.4 import { EventEmitter } from "events"; declare namespace npmlog { // TODO: newStream, newGroup, setGaugeTemplate and setGaugeTemplateSet need to be added interface Logger extends EventEmitter { (): any; level: string; record: MessageObject[]; maxRecordSize: number; prefixStyle: StyleObject; headingStyle: StyleObject; heading: string; stream: any; // Defaults to process.stderr log(level: LogLevels | string, prefix: string, message: string, ...args: any[]): void; silly(prefix: string, message: string, ...args: any[]): void; verbose(prefix: string, message: string, ...args: any[]): void; info(prefix: string, message: string, ...args: any[]): void; timing(prefix: string, message: string, ...args: any[]): void; http(prefix: string, message: string, ...args: any[]): void; notice(prefix: string, message: string, ...args: any[]): void; warn(prefix: string, message: string, ...args: any[]): void; error(prefix: string, message: string, ...args: any[]): void; silent(prefix: string, message: string, ...args: any[]): void; enableColor(): void; disableColor(): void; enableProgress(): void; disableProgress(): void; progressEnabled(): boolean; enableUnicode(): void; disableUnicode(): void; pause(): void; resume(): void; addLevel(level: string, n: number, style?: StyleObject, disp?: string): void; // Allows for custom log levels // npmlog.addLevel("custom", level) // npmlog.custom(prefix, message) [key: string]: any; } type LogLevels = "silly" | "verbose" | "info" | "timing" | "http" | "notice" | "warn" | "error" | "silent"; interface StyleObject { fg?: string | undefined; bg?: string | undefined; bold?: boolean | undefined; inverse?: boolean | undefined; underline?: boolean | undefined; bell?: boolean | undefined; } interface MessageObject { id: number; level: string; prefix: string; message: string; messageRaw: string; } } declare var npmlog: npmlog.Logger; export = npmlog;
Close