export type { Constructor, JsonValue, Primitive } from 'type-fest'; /** * Generic Dictionary */ export type GenericDictionary = Record; /** * Dictionary: { [property: string]: string; } */ export type Dictionary = GenericDictionary; /** * AnyObject with any (unknown) properties */ export type AnyObject = GenericDictionary;