You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
572 B
12 lines
572 B
/// <reference types="react" />
|
|
import type { Key, DataIndex } from '../interface';
|
|
export declare function getPathValue<ValueType, ObjectType extends object>(record: ObjectType, path: DataIndex): ValueType;
|
|
interface GetColumnKeyColumn {
|
|
key?: Key;
|
|
dataIndex?: DataIndex;
|
|
}
|
|
export declare function getColumnsKey(columns: readonly GetColumnKeyColumn[]): import("react").Key[];
|
|
export declare function mergeObject<ReturnObject extends object>(...objects: Partial<ReturnObject>[]): ReturnObject;
|
|
export declare function validateValue<T>(val: T): boolean;
|
|
export {};
|