nestjs-temporal-core
    Preparing search index...

    Interface ExtendedUpdateMethodInfo

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

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