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.
5 lines
534 B
5 lines
534 B
import { FlattenDataNode, Key, RawValueType } from '../interface';
|
|
export declare type SkipType = null | 'select' | 'checkbox';
|
|
export declare function isDisabled(dataNode: FlattenDataNode, skipType: SkipType): boolean;
|
|
export default function useKeyValueMapping(cacheKeyMap: Map<Key, FlattenDataNode>, cacheValueMap: Map<RawValueType, FlattenDataNode>): [(key: Key, skipType?: SkipType, ignoreDisabledCheck?: boolean) => FlattenDataNode, (value: RawValueType, skipType?: SkipType, ignoreDisabledCheck?: boolean) => FlattenDataNode];
|