useEntities.d.ts 538 B

12345678910
  1. import type { DataEntity } from '../../vc-tree/interface';
  2. import type { DefaultOptionType, InternalFieldNames } from '../Cascader';
  3. import type { Ref } from 'vue';
  4. export interface OptionsInfo {
  5. keyEntities: Record<string, DataEntity>;
  6. pathKeyEntities: Record<string, DataEntity>;
  7. }
  8. /** Lazy parse options data into conduct-able info to avoid perf issue in single mode */
  9. declare const _default: (options: Ref<DefaultOptionType[]>, fieldNames: Ref<InternalFieldNames>) => import("vue").ComputedRef<any>;
  10. export default _default;