UNPKG

541 BTypeScriptView Raw
1import { Color } from '../../color';
2import { View } from '../core/view';
3import { Property } from '../core/properties';
4import { Switch as SwitchDefinition } from '.';
5export declare class SwitchBase extends View implements SwitchDefinition {
6 static checkedChangeEvent: string;
7 checked: boolean;
8 offBackgroundColor: Color;
9 _onCheckedPropertyChanged(newValue: boolean): void;
10}
11export declare const checkedProperty: Property<SwitchBase, boolean>;
12export declare const offBackgroundColorProperty: Property<SwitchBase, Color>;