navbar.d.ts 945 B

123456789101112131415161718192021222324252627282930313233
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Navbar extends SuperComponent {
  3. externalClasses: string[];
  4. timer: any;
  5. options: {
  6. addGlobalClass: boolean;
  7. multipleSlots: boolean;
  8. };
  9. properties: import("./type").TdNavbarProps;
  10. observers: {
  11. visible(this: Navbar, visible: any): void;
  12. fixed(this: Navbar, fixed: any): void;
  13. background(this: Navbar, background: any): void;
  14. 'homeIcon, leftIcon'(this: Navbar): void;
  15. 'title,titleMaxLength'(this: any): void;
  16. };
  17. data: {
  18. hasHomeIcon: boolean;
  19. hasBackIcon: boolean;
  20. classPrefix: string;
  21. fixedClass: string;
  22. contentStyle: string;
  23. boxStyle: string;
  24. opacity: number;
  25. ios: boolean;
  26. delta: number;
  27. showTitle: string;
  28. };
  29. attached(): void;
  30. calcLeftBtn(): void;
  31. goHome(): void;
  32. goBack(): void;
  33. }