UNPKG

@gzued/antd-compiled

Version:

Pre-bundled Ant Design 4.x and related dependencies for @gzued packages

12 lines (11 loc) 395 B
import * as React from 'react'; import type { ColumnType, StickyOffsets } from '../interface'; declare type FlattenColumns<RecordType> = readonly (ColumnType<RecordType> & { scrollbar?: boolean; })[]; declare const SummaryContext: React.Context<{ stickyOffsets?: StickyOffsets; scrollColumnIndex?: number; flattenColumns?: FlattenColumns<any>; }>; export default SummaryContext;