build revisions and layout updates for toast
This commit is contained in:
parent
b341a3675e
commit
39235193e6
1116 changed files with 130517 additions and 12 deletions
8
node_modules/@hookform/resolvers/superstruct/dist/superstruct.d.ts
generated
vendored
Normal file
8
node_modules/@hookform/resolvers/superstruct/dist/superstruct.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import { FieldValues, Resolver } from 'react-hook-form';
|
||||
import { Infer, Struct, validate } from 'superstruct';
|
||||
export declare function superstructResolver<Input extends FieldValues, Context, Output>(schema: Struct<Input, any>, schemaOptions?: Parameters<typeof validate>[2], resolverOptions?: {
|
||||
raw?: false;
|
||||
}): Resolver<Input, Context, Infer<typeof schema>>;
|
||||
export declare function superstructResolver<Input extends FieldValues, Context, Output>(schema: Struct<Input, any>, schemaOptions: Parameters<typeof validate>[2] | undefined, resolverOptions: {
|
||||
raw: true;
|
||||
}): Resolver<Input, Context, Input>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue