nestjs-temporal-core
    Preparing search index...

    Interface UpdateMethodInfo

    Information about update methods discovered in workflow classes. Contains method details and handler function.

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