valueUtil.d.ts 414 B

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