Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.147.225
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
@types /
node /
stream /
Delete
Unzip
Name
Size
Permission
Date
Action
consumers.d.ts
1.17
KB
-rwxrwxr-x
2022-08-30 11:49
promises.d.ts
2.32
KB
-rwxrwxr-x
2022-08-30 11:49
web.d.ts
13.45
KB
-rwxrwxr-x
2022-08-30 11:49
Save
Rename
// Duplicates of interface in lib.dom.ts. // Duplicated here rather than referencing lib.dom.ts because doing so causes lib.dom.ts to be loaded for "test-all" // Which in turn causes tests to pass that shouldn't pass. // // This interface is not, and should not be, exported. interface Blob { readonly size: number; readonly type: string; arrayBuffer(): Promise<ArrayBuffer>; slice(start?: number, end?: number, contentType?: string): Blob; stream(): NodeJS.ReadableStream; text(): Promise<string>; } declare module 'stream/consumers' { import { Readable } from 'node:stream'; function buffer(stream: NodeJS.ReadableStream | Readable | AsyncIterator<any>): Promise<Buffer>; function text(stream: NodeJS.ReadableStream | Readable | AsyncIterator<any>): Promise<string>; function arrayBuffer(stream: NodeJS.ReadableStream | Readable | AsyncIterator<any>): Promise<ArrayBuffer>; function blob(stream: NodeJS.ReadableStream | Readable | AsyncIterator<any>): Promise<Blob>; function json(stream: NodeJS.ReadableStream | Readable | AsyncIterator<any>): Promise<unknown>; } declare module 'node:stream/consumers' { export * from 'stream/consumers'; }