( options: TaskOptions<TOutput, TContext, TIdentifier, TParser> )
| 343 | } & {}; |
| 344 | |
| 345 | export function task< |
| 346 | TOutput, |
| 347 | TContext extends AnyContextBuilder, |
| 348 | TIdentifier extends string, |
| 349 | TParser extends Parser | undefined = undefined, |
| 350 | >( |
| 351 | options: TaskOptions<TOutput, TContext, TIdentifier, TParser> |
| 352 | ): Task<TOutput, TIdentifier, TParser> { |
| 353 | return createTask(options); |
| 354 | } |
| 355 | |
| 356 | export function createTask< |
| 357 | TOutput, |
no test coverage detected
searching dependent graphs…