@lion/form-core
Version:
Form-core contains all essential building blocks for creating form fields and fieldsets
11 lines (10 loc) • 384 B
TypeScript
export type LionField = import('../src/LionField.js').LionField;
export type FormControlHost = import('../types/FormControlMixinTypes').FormControlHost;
export type FormControl = FormControlHost & HTMLElement & {
_parentFormGroup?: HTMLElement;
checked?: boolean;
};
export type ShadowHTMLElement = HTMLElement & {
shadowRoot: HTMLElement;
assignedNodes: Function;
};