UNPKG

igniteui-webcomponents-inputs

Version:

Ignite UI Web Components inputs components.

14 lines (13 loc) 371 B
import { EventArgs, Type } from "igniteui-webcomponents-core"; /** * @hidden */ export declare class CheckboxChangeEventArgs extends EventArgs { static $t: Type; private _isChecked; get isChecked(): boolean; set isChecked(a: boolean); private _isIndeterminate; get isIndeterminate(): boolean; set isIndeterminate(a: boolean); }