/** * @type CustomPreference: Preference object * * @property groupId: The ID of the preference group. * * @property id: The Preference Id. * * @property value: The value for the Preference Id. * */ export type CustomPreference = { groupId: string; id: string; value: any | null; } & { [key: string]: any; };