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 /
events /
node_modules /
@types /
react /
[ HOME SHELL ]
Name
Size
Permission
Action
ts5.0
[ DIR ]
drwxrwxr-x
LICENSE
1.11
KB
-rw-rw-r--
README.md
1.83
KB
-rw-rw-r--
canary.d.ts
3.77
KB
-rw-rw-r--
experimental.d.ts
5.27
KB
-rw-rw-r--
global.d.ts
7.16
KB
-rw-rw-r--
index.d.ts
183.84
KB
-rw-rw-r--
jsx-dev-runtime.d.ts
706
B
-rw-rw-r--
jsx-runtime.d.ts
706
B
-rw-rw-r--
package.json
5.87
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : canary.d.ts
/** * These are types for things that are present in the React `canary` release channel. * * To load the types declared here in an actual project, there are three ways. The easiest one, * if your `tsconfig.json` already has a `"types"` array in the `"compilerOptions"` section, * is to add `"react/canary"` to the `"types"` array. * * Alternatively, a specific import syntax can to be used from a typescript file. * This module does not exist in reality, which is why the {} is important: * * ```ts * import {} from 'react/canary' * ``` * * It is also possible to include it through a triple-slash reference: * * ```ts * /// <reference types="react/canary" /> * ``` * * Either the import or the reference only needs to appear once, anywhere in the project. */ // See https://github.com/facebook/react/blob/main/packages/react/src/React.js to see how the exports are declared, import React = require("."); export {}; declare const UNDEFINED_VOID_ONLY: unique symbol; type VoidOrUndefinedOnly = void | { [UNDEFINED_VOID_ONLY]: never }; declare module "." { interface ThenableImpl<T> { then(onFulfill: (value: T) => unknown, onReject: (error: unknown) => unknown): void | PromiseLike<unknown>; } interface UntrackedThenable<T> extends ThenableImpl<T> { status?: void; } export interface PendingThenable<T> extends ThenableImpl<T> { status: "pending"; } export interface FulfilledThenable<T> extends ThenableImpl<T> { status: "fulfilled"; value: T; } export interface RejectedThenable<T> extends ThenableImpl<T> { status: "rejected"; reason: unknown; } export type Thenable<T> = UntrackedThenable<T> | PendingThenable<T> | FulfilledThenable<T> | RejectedThenable<T>; export type Usable<T> = Thenable<T> | Context<T>; export function use<T>(usable: Usable<T>): T; interface ServerContextJSONArray extends ReadonlyArray<ServerContextJSONValue> {} export type ServerContextJSONValue = | string | boolean | number | null | ServerContextJSONArray | { [key: string]: ServerContextJSONValue }; export interface ServerContext<T extends ServerContextJSONValue> { Provider: Provider<T>; } /** * Accepts a context object (the value returned from `React.createContext` or `React.createServerContext`) and returns the current * context value, as given by the nearest context provider for the given context. * * @version 16.8.0 * @see https://react.dev/reference/react/useContext */ function useContext<T extends ServerContextJSONValue>(context: ServerContext<T>): T; export function createServerContext<T extends ServerContextJSONValue>( globalName: string, defaultValue: T, ): ServerContext<T>; // eslint-disable-next-line @typescript-eslint/ban-types export function cache<CachedFunction extends Function>(fn: CachedFunction): CachedFunction; export function unstable_useCacheRefresh(): () => void; interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS { functions: (formData: FormData) => void; } export interface TransitionStartFunction { /** * Marks all state updates inside the async function as transitions * * @see {https://react.dev/reference/react/useTransition#starttransition} * * @param callback */ (callback: () => Promise<VoidOrUndefinedOnly>): void; } function useOptimistic<State>( passthrough: State, ): [State, (action: State | ((pendingState: State) => State)) => void]; function useOptimistic<State, Action>( passthrough: State, reducer: (state: State, action: Action) => State, ): [State, (action: Action) => void]; }
Close