( options: ValibotTaskOptions<TOutput, TContext, TIdentifier, TSchema> )
| 288 | } & TaskOptions<v.Input<TSchema>, v.Output<TSchema>, TOutput, TContext, TIdentifier>; |
| 289 | |
| 290 | export function valibotTask< |
| 291 | TOutput, |
| 292 | TContext extends object, |
| 293 | TIdentifier extends string, |
| 294 | TSchema extends v.BaseSchema = v.AnySchema, |
| 295 | >( |
| 296 | options: ValibotTaskOptions<TOutput, TContext, TIdentifier, TSchema> |
| 297 | ): Task<v.Input<TSchema>, v.Output<TSchema>, TOutput, TIdentifier> { |
| 298 | return createTask<v.Input<TSchema>, v.Output<TSchema>, TOutput, TContext, TIdentifier>(options); |
| 299 | } |
| 300 | |
| 301 | export interface TaskLibraryRecord { |
| 302 | [key: string]: AnyTask | TaskLibraryRecord; |
nothing calls this directly
no test coverage detected
searching dependent graphs…