Type Alias: JoinPoint()<T>
Less than 1 minute
AspectJS • Docs
Type Alias: JoinPoint()<T>
JoinPoint<
T
>: (...args
) =>T
Hold the original function, bound to its execution context and it original parameters.
- Call this method without parameters to call the original function without parameters.
- Call this method with an new parameters to call the original function with the given parameters.
In any way, calling a joinpoint twice will throw a WeavingError
Type Parameters
• T = unknown
Parameters
• ...args: unknown
[]
Returns
T
Defined in
packages/core/src/advice/joinpoint.ts:9