UNPKG

351 BTypeScriptView Raw
1/// <reference types="react" />
2import type { DataIndex, Key } from '../interface';
3export interface GetColumnKeyColumn<T = any> {
4 key?: Key;
5 dataIndex?: DataIndex<T>;
6}
7export declare function getColumnsKey<T = any>(columns: readonly GetColumnKeyColumn<T>[]): import("react").Key[];
8export declare function validateValue<T>(val: T): boolean;