vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface PostCallHookArguments<T>

    interface PostCallHookArguments<T> {
        args: any[];
        name: string | symbol;
        returnValue?: any;
        target: T;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    args: any[]

    Thr arguments passed to the function being called

    name: string | symbol

    The name of the function being called

    returnValue?: any

    When a post hook, the return value of the function being called

    target: T

    The target object of the hook