API Reference
@formkit/common
Introduction
Common types and utilities shared across FormKit packages.
TypeScript
The full library of available FormKit inputs.
Signature
interface FormKitLibrary {
[index: string]: FormKitTypeDefinition;
}
Definition of a library item — when registering a new library item, these are the required and available properties.
Signature
type FormKitTypeDefinition = {
type: FormKitNodeType;
schema: FormKitSchemaNode[] | FormKitSchemaCondition;
};