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

cell-group.d.ts 418B

12345678910111213141516
  1. import { SuperComponent, RelationsOptions } from '../common/src/index';
  2. export default class CellGroup extends SuperComponent {
  3. externalClasses: string[];
  4. relations: RelationsOptions;
  5. properties: import("./type").TdCellGroupProps;
  6. data: {
  7. prefix: string;
  8. classPrefix: string;
  9. };
  10. lifetimes: {
  11. ready(): void;
  12. };
  13. methods: {
  14. updateLastChid(): void;
  15. };
  16. }