@lion/form-core
Version:
Form-core contains all essential building blocks for creating form fields and fieldsets
9 lines (8 loc) • 557 B
TypeScript
export type ChoiceInputMixin = import('../../types/choice-group/ChoiceInputMixinTypes').ChoiceInputMixin;
export const ChoiceInputMixin: typeof import("../../types/choice-group/ChoiceInputMixinTypes").ChoiceInputImplementation;
export type FormControlHost = import('../../types/FormControlMixinTypes').FormControlHost;
export type FormControl = FormControlHost & HTMLElement & {
_parentFormGroup?: HTMLElement;
checked?: boolean;
};
export type ChoiceInputModelValue = import('../../types/choice-group/ChoiceInputMixinTypes').ChoiceInputModelValue;