minishouyin/node_modules/antd/es/descriptions/Row.d.ts
2025-11-12 11:35:57 +08:00

14 lines
358 B
TypeScript

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;