notice-bar.d.ts 865 B

12345678910111213141516171819202122232425262728293031
  1. import { SuperComponent, ComponentsOptionsType } from '../common/src/index';
  2. export default class NoticeBar extends SuperComponent {
  3. externalClasses: string[];
  4. options: ComponentsOptionsType;
  5. properties: import("./type").TdNoticeBarProps;
  6. data: {
  7. prefix: string;
  8. classPrefix: string;
  9. loop: number;
  10. };
  11. observers: {
  12. marquee(val: any): void;
  13. visible(visible: any): void;
  14. };
  15. lifetimes: {
  16. created(): void;
  17. detached(): void;
  18. ready(): void;
  19. };
  20. methods: {
  21. initAnimation(): void;
  22. startScrollAnimation(isFirstScroll?: boolean): void;
  23. show(): void;
  24. clearNoticeBarAnimation(): void;
  25. setIcon(): void;
  26. clickPrefixIcon(): void;
  27. clickContent(): void;
  28. clickSuffixIcon(): void;
  29. clickExtra(): void;
  30. };
  31. }