Documentation
    Preparing search index...

    Execution of a test function.

    interface IExecution {
        completed_at: string;
        error: Error | null;
        location: string;
        name: string;
        started_at: string;
        value: unknown;
    }
    Index

    Properties

    completed_at: string

    Completion time.

    error: Error | null

    Error when occurred.

    location: string

    Location path of the function.

    name: string

    Name of function.

    started_at: string

    Elapsed time.

    value: unknown

    Returned value from the function.