nestjs-temporal-core
    Preparing search index...

    Interface GenericClient

    Generic client type for dependency injection

    interface GenericClient {
        workflow: {
            getHandle: (id: string, runId?: string) => WorkflowHandle<Workflow>;
            start: (
                type: string,
                options: Record<string, string | number | boolean | object>,
            ) => Promise<WorkflowHandle<Workflow>>;
        };
    }
    Index

    Properties

    Properties

    workflow: {
        getHandle: (id: string, runId?: string) => WorkflowHandle<Workflow>;
        start: (
            type: string,
            options: Record<string, string | number | boolean | object>,
        ) => Promise<WorkflowHandle<Workflow>>;
    }