import type { Collections, CollectionName, IdFields } from "../collections"; /** * @category Definitions */ export type Definitions = { [N in CollectionName]: Definition; }; /** * @category Definitions */ export type Definition> = { idFields: IdFields; };