Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
quiz1 /
node_modules /
@types /
react-dom /
[ HOME SHELL ]
Name
Size
Permission
Action
test-utils
[ DIR ]
dr-xr-xr-x
LICENSE
1.11
KB
-rw-rw-rw-
README.md
780
B
-rw-rw-rw-
canary.d.ts
6.28
KB
-rw-rw-rw-
client.d.ts
2.09
KB
-rw-rw-rw-
experimental.d.ts
1.28
KB
-rw-rw-rw-
index.d.ts
4.71
KB
-rw-rw-rw-
package.json
2.31
KB
-rw-rw-rw-
server.d.ts
4.41
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : server.d.ts
// forward declarations declare global { namespace NodeJS { // eslint-disable-next-line @typescript-eslint/no-empty-interface interface ReadableStream {} // eslint-disable-next-line @typescript-eslint/no-empty-interface interface WritableStream {} } /** * Stub for https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal */ // eslint-disable-next-line @typescript-eslint/no-empty-interface interface AbortSignal {} /** * Stub for https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream */ // eslint-disable-next-line @typescript-eslint/no-empty-interface interface ReadableStream {} } import { ReactNode } from "react"; import { ErrorInfo } from "./client"; export interface RenderToPipeableStreamOptions { identifierPrefix?: string; namespaceURI?: string; nonce?: string; bootstrapScriptContent?: string; bootstrapScripts?: string[]; bootstrapModules?: string[]; progressiveChunkSize?: number; onShellReady?: () => void; onShellError?: (error: unknown) => void; onAllReady?: () => void; onError?: (error: unknown, errorInfo: ErrorInfo) => string | void; } export interface PipeableStream { abort: (reason?: unknown) => void; pipe: <Writable extends NodeJS.WritableStream>(destination: Writable) => Writable; } export interface ServerOptions { identifierPrefix?: string; } /** * Only available in the environments with [Node.js Streams](https://nodejs.dev/learn/nodejs-streams). * * @see [API](https://reactjs.org/docs/react-dom-server.html#rendertopipeablestream) * * @param children * @param options */ export function renderToPipeableStream(children: ReactNode, options?: RenderToPipeableStreamOptions): PipeableStream; /** * Render a React element to its initial HTML. This should only be used on the server. * React will return an HTML string. You can use this method to generate HTML on the server * and send the markup down on the initial request for faster page loads and to allow search * engines to crawl your pages for SEO purposes. * * If you call `ReactDOMClient.hydrateRoot()` on a node that already has this server-rendered markup, * React will preserve it and only attach event handlers, allowing you * to have a very performant first-load experience. */ export function renderToString(element: ReactNode, options?: ServerOptions): string; /** * Render a React element to its initial HTML. Returns a Readable stream that outputs * an HTML string. The HTML output by this stream is exactly equal to what * `ReactDOMServer.renderToString()` would return. * * @deprecated */ export function renderToNodeStream(element: ReactNode, options?: ServerOptions): NodeJS.ReadableStream; /** * Similar to `renderToString`, except this doesn't create extra DOM attributes * such as `data-reactid`, that React uses internally. This is useful if you want * to use React as a simple static page generator, as stripping away the extra * attributes can save lots of bytes. */ export function renderToStaticMarkup(element: ReactNode, options?: ServerOptions): string; /** * Similar to `renderToNodeStream`, except this doesn't create extra DOM attributes * such as `data-reactid`, that React uses internally. The HTML output by this stream * is exactly equal to what `ReactDOMServer.renderToStaticMarkup()` would return. * * @deprecated */ export function renderToStaticNodeStream(element: ReactNode, options?: ServerOptions): NodeJS.ReadableStream; export interface RenderToReadableStreamOptions { identifierPrefix?: string; namespaceURI?: string; nonce?: string; bootstrapScriptContent?: string; bootstrapScripts?: string[]; bootstrapModules?: string[]; progressiveChunkSize?: number; signal?: AbortSignal; onError?: (error: unknown, errorInfo: ErrorInfo) => string | void; } export interface ReactDOMServerReadableStream extends ReadableStream { allReady: Promise<void>; } /** * Only available in the environments with [Web Streams](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) (this includes browsers, Deno, and some modern edge runtimes). * * @see [API](https://reactjs.org/docs/react-dom-server.html#rendertoreadablestream) */ export function renderToReadableStream( children: ReactNode, options?: RenderToReadableStreamOptions, ): Promise<ReactDOMServerReadableStream>; export const version: string; export as namespace ReactDOMServer;
Close