Skip to content

ui/build/form/schema

ui/build/form/schema

Type Aliases

FormSchema

type FormSchema = object;

Defined in: apps/website/.api-docs-entry/ui/build/form/schema.d.ts:9

Structural constraint satisfied by any Standard Schema v1 schema, read through ~standard.

Properties

Property Modifier Type Defined in
~standard readonly object apps/website/.api-docs-entry/ui/build/form/schema.d.ts:10
~standard.validate readonly (data) => unknown apps/website/.api-docs-entry/ui/build/form/schema.d.ts:11

InferSchema

type InferSchema<S> = S extends object ? T : object;

Defined in: apps/website/.api-docs-entry/ui/build/form/schema.d.ts:15

Extract the output type from a Standard Schema v1-compatible schema.

Type Parameters

Type Parameter
S extends FormSchema