nestjs-temporal-core
    Preparing search index...

    Interface ExtendedQueryMethodInfo

    Extended information about query methods with class context. Used internally for query method management.

    interface ExtendedQueryMethodInfo {
        className: string;
        handler: (...args: unknown[]) => unknown;
        instance: Record<string, unknown>;
        methodName: string;
        options?: Record<string, string | number | boolean | object>;
        queryName: string;
    }
    Index

    Properties

    className: string
    handler: (...args: unknown[]) => unknown
    instance: Record<string, unknown>
    methodName: string
    options?: Record<string, string | number | boolean | object>
    queryName: string