@types/harmony-proxy
TypeScript icon, indicating that this package has built-in type declarations

1.0.32 • Public • Published

Installation

npm install --save @types/harmony-proxy

Summary

This package contains type definitions for harmony-proxy (https://www.npmjs.com/package/harmony-proxy).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/harmony-proxy.

index.d.ts

declare namespace harmonyProxy {
    type PropertyKey = string | number | symbol;

    interface ProxyHandler<T> {
        getPrototypeOf?(target: T): any;
        setPrototypeOf?(target: T, v: any): boolean;
        isExtensible?(target: T): boolean;
        preventExtensions?(target: T): boolean;
        getOwnPropertyDescriptor?(target: T, p: PropertyKey): PropertyDescriptor;
        has?(target: T, p: PropertyKey): boolean;
        get?(target: T, p: PropertyKey, receiver: any): any;
        set?(target: T, p: PropertyKey, value: any, receiver: any): boolean;
        deleteProperty?(target: T, p: PropertyKey): boolean;
        defineProperty?(target: T, p: PropertyKey, attributes: PropertyDescriptor): boolean;
        enumerate?(target: T): PropertyKey[];
        ownKeys?(target: T): PropertyKey[];
        apply?(target: T, thisArg: any, argArray?: any): any;
        construct?(target: T, thisArg: any, argArray?: any): any;
    }

    interface ProxyConstructor {
        revocable<T>(target: T, handler: ProxyHandler<T>): { proxy: T; revoke: () => void };
        new<T>(target: T, handler: ProxyHandler<T>): T;
    }
}

declare var _Proxy: harmonyProxy.ProxyConstructor;
export = _Proxy;

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: none

Credits

These definitions were written by Remo Jansen.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/harmony-proxy

Weekly Downloads

15

Version

1.0.32

License

MIT

Unpacked Size

4.99 kB

Total Files

5

Last publish

Collaborators

  • types