@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
13 lines (12 loc) • 541 B
TypeScript
import { Color } from '../../color';
import { View } from '../core/view';
import { Property } from '../core/properties';
import { Switch as SwitchDefinition } from '.';
export declare class SwitchBase extends View implements SwitchDefinition {
static checkedChangeEvent: string;
checked: boolean;
offBackgroundColor: Color;
_onCheckedPropertyChanged(newValue: boolean): void;
}
export declare const checkedProperty: Property<SwitchBase, boolean>;
export declare const offBackgroundColorProperty: Property<SwitchBase, Color>;