apply
function
Applies a predefined schema to a given FieldPath
.
API
function apply<TValue>(
path: FieldPath<TValue>,
schema: NoInfer<SchemaOrSchemaFn<TValue>>,
): void;
apply
void
Applies a predefined schema to a given FieldPath
.
@returns
void
Usage Notes
const nameSchema = schema<{first: string, last: string}>((name) => { required(name.first); required(name.last);});const profileForm = form(signal({name: {first: '', last: ''}, age: 0}), (profile) => { apply(profile.name, nameSchema);});
Jump to details