UNPKG

choerodon-ui

Version:

An enterprise-class UI design language and React-based implementation

23 lines (22 loc) 649 B
import * as React from 'react'; import { DraggableProvided, DraggableStateSnapshot } from 'react-beautiful-dnd'; export interface CellGroupProps { fixed?: 'left' | 'right'; width?: number; height?: number; left?: number; style?: React.CSSProperties; className?: string; classPrefix?: string; snapshot?: DraggableStateSnapshot; provided?: DraggableProvided; rowDraggable?: boolean; } declare class CellGroup extends React.PureComponent<CellGroupProps> { static defaultProps: { classPrefix: string; }; addPrefix: (name: string) => any; render(): JSX.Element; } export default CellGroup;