ether-admin/node_modules/ant-design-vue/lib/descriptions/Cell.d.ts

15 lines
458 B
TypeScript

import type { VNodeTypes, HTMLAttributes, FunctionalComponent, CSSProperties } from 'vue';
interface CellProps extends HTMLAttributes {
itemPrefixCls: string;
span: number;
component: string;
labelStyle?: CSSProperties;
contentStyle?: CSSProperties;
bordered?: boolean;
label?: number | VNodeTypes;
content?: number | VNodeTypes;
colon?: boolean;
}
declare const Cell: FunctionalComponent<CellProps>;
export default Cell;