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.159
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 /
immer /
dist /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
current.d.ts
348
B
-rw-rw-rw-
current.d.ts.map
187
B
-rw-rw-rw-
finalize.d.ts
158
B
-rw-rw-rw-
finalize.d.ts.map
220
B
-rw-rw-rw-
immerClass.d.ts
2.36
KB
-rw-rw-rw-
immerClass.d.ts.map
1.09
KB
-rw-rw-rw-
proxy.d.ts
1.23
KB
-rw-rw-rw-
proxy.d.ts.map
1.08
KB
-rw-rw-rw-
scope.d.ts
746
B
-rw-rw-rw-
scope.d.ts.map
676
B
-rw-rw-rw-
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