⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
node_modules
/
@types
/
es-abstract
/
View File Name :
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;