Icard/angular-clarity-master(work.../node_modules/primeng/inputswitch/inputswitch.interface.d.ts

16 lines
254 B
TypeScript
Raw Normal View History

2024-07-16 15:23:22 +00:00
/**
* Custom change event.
* @see {@link InputSwitch.onChange}
* @group Events
*/
export interface InputSwitchChangeEvent {
/**
* Browser event.
*/
originalEvent: Event;
/**
* Checked state.
*/
checked: boolean;
}