电速宝
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

result.d.ts 457B

123456789101112131415161718192021
  1. import { SuperComponent } from '../common/src/index';
  2. export default class extends SuperComponent {
  3. options: {
  4. multipleSlots: boolean;
  5. };
  6. externalClasses: string[];
  7. properties: import("./type").TdResultProps;
  8. data: {
  9. prefix: string;
  10. classPrefix: string;
  11. };
  12. lifetimes: {
  13. ready(): void;
  14. };
  15. observers: {
  16. 'icon, theme'(): void;
  17. };
  18. methods: {
  19. initIcon(): void;
  20. };
  21. }