You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
494 B
22 lines
494 B
import { SuperComponent } from '../common/src/index';
|
|
export default class Switch extends SuperComponent {
|
|
externalClasses: string[];
|
|
behaviors: string[];
|
|
properties: import("./type").TdSwitchProps;
|
|
data: {
|
|
prefix: string;
|
|
classPrefix: string;
|
|
checked: boolean;
|
|
};
|
|
controlledProps: {
|
|
key: string;
|
|
event: string;
|
|
}[];
|
|
observers: {
|
|
value(val: any): void;
|
|
};
|
|
methods: {
|
|
handleSwitch(): void;
|
|
};
|
|
}
|