Interface CreateThreadOptions<T>

interface CreateThreadOptions<T = Record<string, unknown>> {
    debug?: boolean;
    payload?: T;
    type: string;
    workerFile: string;
}

Type Parameters

  • T = Record<string, unknown>

Properties

debug?: boolean
payload?: T
type: string
workerFile: string