( options: TaskOptions<TOutput, TContext, TIdentifier, TParser> )
| 196 | } & {}; |
| 197 | |
| 198 | export function task< |
| 199 | TOutput, |
| 200 | TContext extends object, |
| 201 | TIdentifier extends string, |
| 202 | TParser extends Parser | undefined = undefined, |
| 203 | >( |
| 204 | options: TaskOptions<TOutput, TContext, TIdentifier, TParser> |
| 205 | ): Task<TOutput, TIdentifier, TParser> { |
| 206 | return createTask(options); |
| 207 | } |
| 208 | |
| 209 | export function createTask< |
| 210 | TOutput, |
no test coverage detected
searching dependent graphs…