@ozen-ui/kit
Version:
React component library
5 lines (4 loc) • 411 B
TypeScript
import type { DataListBaseValue, DataListBaseMultipleValue } from '../entities';
import type { DataListBaseBaseProps } from '../types';
export declare const isMultipleProps: (props: DataListBaseBaseProps<boolean>) => props is DataListBaseBaseProps<true>;
export declare const isMultipleInternalValue: (_: DataListBaseValue<boolean> | undefined, multiple: boolean) => _ is DataListBaseMultipleValue | undefined;