合伙人运营小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

icon.d.ts 468B

123456789101112131415161718
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Icon extends SuperComponent {
  3. externalClasses: string[];
  4. properties: import("./type").TdIconProps;
  5. data: {
  6. componentPrefix: string;
  7. classPrefix: string;
  8. isImage: boolean;
  9. iconStyle: any;
  10. };
  11. observers: {
  12. 'name, color, size, style'(): void;
  13. };
  14. methods: {
  15. onTap(event: any): void;
  16. setIconStyle(): void;
  17. };
  18. }