UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

12 lines (11 loc) 272 B
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;