icon.d.ts 515 B

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