switch.d.ts 494 B

123456789101112131415161718192021
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Switch extends SuperComponent {
  3. externalClasses: string[];
  4. behaviors: string[];
  5. properties: import("./type").TdSwitchProps;
  6. data: {
  7. prefix: string;
  8. classPrefix: string;
  9. checked: boolean;
  10. };
  11. controlledProps: {
  12. key: string;
  13. event: string;
  14. }[];
  15. observers: {
  16. value(val: any): void;
  17. };
  18. methods: {
  19. handleSwitch(): void;
  20. };
  21. }