File: ../store/addon/-private/ts-interfaces/utils.ts
/** @module @ember-data/store */ export type ConfidentDict<V> = { [key: string]: V }; export type Dict<V> = { [key: string]: V | undefined };
/** @module @ember-data/store */ export type ConfidentDict<V> = { [key: string]: V }; export type Dict<V> = { [key: string]: V | undefined };