Cell.d.ts 440 B

1234567891011121314
  1. import type { VNodeTypes, HTMLAttributes, FunctionalComponent, CSSProperties } from 'vue';
  2. interface CellProps extends HTMLAttributes {
  3. itemPrefixCls: string;
  4. span: number;
  5. component: string;
  6. labelStyle?: CSSProperties;
  7. contentStyle?: CSSProperties;
  8. bordered?: boolean;
  9. label?: VNodeTypes;
  10. content?: VNodeTypes;
  11. colon?: boolean;
  12. }
  13. declare const Cell: FunctionalComponent<CellProps>;
  14. export default Cell;