tyneq / BoundMethod
Type Alias: BoundMethod()<TThis, TReturn>
BoundMethod<
TThis,TReturn> = (this, ...args) =>TReturn
Defined in: src/types/utility.ts:45
A method callable on a specific this context, returning TReturn.
Type Parameters
| Type Parameter | Default type |
|---|---|
TThis | unknown |
TReturn | unknown |
Parameters
| Parameter | Type |
|---|---|
this | TThis |
...args | any[] |
Returns
TReturn