tyneq / MethodDescriptor
Interface: MethodDescriptor
Defined in: src/types/reflection.ts:8
Describes a method (function-valued own property) on a reflected target.
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
kind | readonly | "method" | - | src/types/reflection.ts:9 |
name | readonly | string | symbol | - | src/types/reflection.ts:10 |
value | readonly | Function | The raw function value. | src/types/reflection.ts:12 |
invoke | readonly | (thisArg, ...args) => unknown | Calls the method with the given this context and arguments. | src/types/reflection.ts:14 |