Skip to main content
Version: v1.2.0

Interface: Proxy()

Defined in: src/types/Nexo.ts:25

Extends

Proxy(...args): any

Defined in: src/types/Nexo.ts:25

Parameters

args

...ArrayLike

Returns

any

Indexable

[x: string | symbol]: any

Properties

apply

apply: any

Defined in: src/types/Nexo.ts:29

Calls the function, substituting the specified object for the this value of the function, and the specified array for the arguments of the function.

Param

The object to be used as the this object.

Param

A set of arguments to be passed to the function.


arguments

arguments: any

Defined in: src/types/Nexo.ts:30


bind

bind: any

Defined in: src/types/Nexo.ts:31

For a given function, creates a bound function that has the same body as the original function. The this object of the bound function is associated with the specified object, and has the specified initial parameters.

Param

An object to which the this keyword can refer inside the new function.

Param

A list of arguments to be passed to the new function.


call

call: any

Defined in: src/types/Nexo.ts:32

Calls a method of an object, substituting another object for the current object.

Param

The object to be used as the current object.

Param

A list of arguments to be passed to the method.


caller

caller: any

Defined in: src/types/Nexo.ts:33


length

length: any

Defined in: src/types/Nexo.ts:34


name

name: any

Defined in: src/types/Nexo.ts:28

Returns the name of the function. Function names are read-only and can not be changed.


prototype

prototype: any

Defined in: src/types/Nexo.ts:35


toString

toString: any

Defined in: src/types/Nexo.ts:36

Returns a string representation of a function.