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

12 lines
272 B
TypeScript

import type { FunctionalComponent } from 'vue';
export interface RowProps {
prefixCls: string;
vertical: boolean;
row: any[];
bordered: boolean;
colon: boolean;
index: number;
}
declare const Row: FunctionalComponent<RowProps>;
export default Row;