@alicloud/console-components
Version:
Alibaba Cloud React Components
7 lines (6 loc) • 352 B
TypeScript
import { TComponentTypeWithRef } from '../../../types';
import { IResponsiveGridProps, IResponsiveGridCellProps } from './props';
export type TResponsiveGridCellComponent = TComponentTypeWithRef<IResponsiveGridCellProps>;
export type TResponsiveGridComponent = TComponentTypeWithRef<IResponsiveGridProps> & {
Cell: TResponsiveGridCellComponent;
};