Type Alias ThreadJobFunction<InputType, ResultType>

ThreadJobFunction:
    | (data: InputType) => ResultType
    | (data: InputType) => Promise<ResultType>

The type of a function that can be run on a separate thread.

Type Parameters

  • InputType
  • ResultType