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
/
var /
www /
html /
cqt /
node_modules /
@types /
react-dom /
[ HOME SHELL ]
Name
Size
Permission
Action
test-utils
[ DIR ]
drwxr-xr-x
LICENSE
1.11
KB
-rw-r--r--
README.md
812
B
-rw-r--r--
canary.d.ts
6.31
KB
-rw-r--r--
client.d.ts
2.09
KB
-rw-r--r--
experimental.d.ts
1.28
KB
-rw-r--r--
index.d.ts
4.71
KB
-rw-r--r--
package.json
2.34
KB
-rw-r--r--
server.d.ts
4.67
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : client.d.ts
/** * WARNING: This entrypoint is only available starting with `react-dom@18.0.0-rc.1` */ // See https://github.com/facebook/react/blob/main/packages/react-dom/client.js to see how the exports are declared, import React = require("react"); export interface HydrationOptions { /** * Prefix for `useId`. */ identifierPrefix?: string; onRecoverableError?: (error: unknown, errorInfo: ErrorInfo) => void; } export interface RootOptions { /** * Prefix for `useId`. */ identifierPrefix?: string; onRecoverableError?: (error: unknown, errorInfo: ErrorInfo) => void; } export interface ErrorInfo { digest?: string; componentStack?: string; } export interface Root { render(children: React.ReactNode): void; unmount(): void; } /** * Different release channels declare additional types of ReactNode this particular release channel accepts. * App or library types should never augment this interface. */ // eslint-disable-next-line @typescript-eslint/no-empty-interface export interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_CREATE_ROOT_CONTAINERS {} export type Container = | Element | DocumentFragment | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_CREATE_ROOT_CONTAINERS[ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_CREATE_ROOT_CONTAINERS ]; /** * createRoot lets you create a root to display React components inside a browser DOM node. * * @see {@link https://react.dev/reference/react-dom/client/createRoot API Reference for `createRoot`} */ export function createRoot(container: Container, options?: RootOptions): Root; /** * Same as `createRoot()`, but is used to hydrate a container whose HTML contents were rendered by ReactDOMServer. * * React will attempt to attach event listeners to the existing markup. * * **Example Usage** * * ```jsx * hydrateRoot(document.querySelector('#root'), <App />) * ``` * * @see https://reactjs.org/docs/react-dom-client.html#hydrateroot */ export function hydrateRoot( container: Element | Document, initialChildren: React.ReactNode, options?: HydrationOptions, ): Root;
Close