/** * Worker command - Start workflow run worker * * Polls Redis for pending/stalled workflow runs and executes them * as isolated processes. Supports multi-tenant execution: each run * runs with its own tenant context captured at workflow creation time. */ import type { WorkerArgs } from "./handler.js"; export interface WorkerOptions extends WorkerArgs { } export declare function formatRedisLogTarget(_redisUrl: string): string; export declare function workerCommand(options: WorkerOptions): Promise; //# sourceMappingURL=command.d.ts.map