@lion/form-core
Version:
Form-core contains all essential building blocks for creating form fields and fieldsets
10 lines (9 loc) • 502 B
TypeScript
/**
* @param {{tagString?: string, modelValueType?: modelValueType}} [customConfig]
*/
export function runFormatMixinSuite(customConfig?: {
tagString?: string | undefined;
modelValueType?: modelValueType | undefined;
} | undefined): void;
export type FormControlHost = import('../types/FormControlMixinTypes').FormControlHost;
export type modelValueType = ArrayConstructor | ObjectConstructor | NumberConstructor | BooleanConstructor | StringConstructor | DateConstructor | 'iban' | 'email';