tab-panel.d.ts 478 B

1234567891011121314151617
  1. import { SuperComponent, RelationsOptions } from '../common/src/index';
  2. export default class TabPanel extends SuperComponent {
  3. relations: RelationsOptions;
  4. properties: import("./type").TdTabPanelProps;
  5. data: {
  6. prefix: string;
  7. classPrefix: string;
  8. active: boolean;
  9. hide: boolean;
  10. };
  11. observers: {
  12. label(): void;
  13. };
  14. getComputedName(): string;
  15. update(): void;
  16. render(active: Boolean, parent: any): void;
  17. }