ng-zorro-antd-mobile
Version:
An enterprise-class mobile UI components based on Ant Design and Angular
25 lines (24 loc) • 577 B
TypeScript
import { EventEmitter } from '@angular/core';
export declare class Switch {
prefixCls: string;
wrapCls: string;
checkboxCls: {
'checkbox-disabled': boolean;
};
colorStyle: {};
switchChecked: boolean;
private _color;
private _platform;
private _disabled;
color: any;
name: string;
platform: string;
checked: boolean;
disabled: boolean;
onChange: EventEmitter<boolean>;
onClick: EventEmitter<boolean>;
dispaly: boolean;
constructor();
changeSwitch(checkedValue: any): void;
click(): void;
}