jb-checkbox
Version:
checkbox web component
12 lines • 464 B
TypeScript
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>;
//# sourceMappingURL=types.d.ts.map