UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

11 lines (10 loc) 524 B
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[]): Key[]; export declare function mergeObject<ReturnObject extends object>(...objects: Partial<ReturnObject>[]): ReturnObject; export declare function validateValue<T>(val: T): boolean; export {};