tab-bar.d.ts 666 B

1234567891011121314151617181920212223242526
  1. import { SuperComponent, RelationsOptions } from '../common/src/index';
  2. export default class Tabbar extends SuperComponent {
  3. relations: RelationsOptions;
  4. externalClasses: string[];
  5. backupValue: 0;
  6. data: {
  7. prefix: string;
  8. classPrefix: string;
  9. };
  10. properties: import("./type").TdTabBarProps;
  11. controlledProps: {
  12. key: string;
  13. event: string;
  14. }[];
  15. observers: {
  16. value(): void;
  17. };
  18. ready(): void;
  19. methods: {
  20. showChildren(): void;
  21. updateChildren(): void;
  22. updateValue(value: any): void;
  23. changeOtherSpread(value: any): void;
  24. initName(): any;
  25. };
  26. }