amis-rpc-design/node_modules/antd/lib/descriptions/Row.d.ts

14 lines
358 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
import * as React from 'react';
import type { InternalDescriptionsItemType } from '.';
export interface RowProps {
prefixCls: string;
vertical: boolean;
row: InternalDescriptionsItemType[];
bordered?: boolean;
colon: boolean;
index: number;
children?: React.ReactNode;
}
declare const Row: React.FC<RowProps>;
export default Row;