Files
icehrm/web/node_modules/antd/es/descriptions/Row.d.ts
2020-05-20 18:47:29 +02:00

13 lines
332 B
TypeScript

import * as React from 'react';
import { DescriptionsItemProps } from './Item';
export interface RowProps {
prefixCls: string;
vertical: boolean;
row: React.ReactElement<DescriptionsItemProps>[];
bordered?: boolean;
colon: boolean;
index: number;
}
declare const Row: React.FC<RowProps>;
export default Row;