UNPKG

jb-checkbox

Version:
13 lines 525 B
import type { JBCheckboxWebComponent } from "./jb-checkbox"; import type { EventTypeWithTarget } from 'jb-core'; export type ElementsObject = { componentWrapper: HTMLDivElement; svgWrapper: HTMLDivElement; svg: SVGAElement; label: HTMLDivElement; message: HTMLDivElement; }; export type ValidationValue = boolean; export type JBCheckboxEventType<TEvent> = EventTypeWithTarget<TEvent, JBCheckboxWebComponent>; export type SizeVariants = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; //# sourceMappingURL=types.d.ts.map