File size: 308 Bytes
bc20498 |
1 2 3 4 5 6 7 |
import type { GroupedEvents, MeltComponentEvents } from '../../internal/types.js';
export declare const checkboxEvents: {
root: readonly ["keydown", "click"];
};
export type CheckboxEvents = GroupedEvents<typeof checkboxEvents>;
export type CheckboxComponentEvents = MeltComponentEvents<CheckboxEvents>;
|