@gibme/sql
    Preparing search index...

    Type Alias ExecutionCallBack<Type>

    type ExecutionCallBack<Type = any> = {
        callback: (
            error: Error | undefined,
            results?: Database.Query.Result<Type>[],
        ) => void;
    }

    Type Parameters

    • Type = any
    Index

    Properties

    Properties

    callback: (
        error: Error | undefined,
        results?: Database.Query.Result<Type>[],
    ) => void