skeleton.d.ts 651 B

1234567891011121314151617181920212223
  1. import { SuperComponent } from '../common/src/index';
  2. import { SkeletonRowColObj } from './type';
  3. import { ClassName, Styles } from '../common/common';
  4. export default class Skeleton extends SuperComponent {
  5. externalClasses: string[];
  6. properties: import("./type").TdSkeletonProps;
  7. observers: {
  8. rowCol(): void;
  9. };
  10. lifetimes: {
  11. attached(): void;
  12. };
  13. methods: {
  14. init(): void;
  15. getColItemClass(obj: SkeletonRowColObj): ClassName;
  16. getColItemStyle(obj: SkeletonRowColObj): Styles;
  17. };
  18. data: {
  19. prefix: string;
  20. classPrefix: string;
  21. parsedRowcols: any[];
  22. };
  23. }