合伙人运营小程序
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.

navbar.d.ts 700B

123456789101112131415161718192021222324252627
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Navbar extends SuperComponent {
  3. externalClasses: string[];
  4. timer: any;
  5. options: {
  6. multipleSlots: boolean;
  7. };
  8. properties: import("./type").TdNavbarProps;
  9. observers: {
  10. visible(this: Navbar, visible: any): void;
  11. 'title,titleMaxLength'(this: any): void;
  12. };
  13. data: {
  14. prefix: string;
  15. classPrefix: string;
  16. boxStyle: string;
  17. showTitle: string;
  18. hideLeft: boolean;
  19. hideCenter: boolean;
  20. };
  21. attached(): void;
  22. detached(): void;
  23. methods: {
  24. queryElements(capsuleRect: any): void;
  25. goBack(): void;
  26. };
  27. }