// A collection of preferences related to a user or org (or combination). export interface Prefs { // TODO replace this with real preferences. placeholder?: string; } export type UserPrefs = Prefs; export type UserOrgPrefs = Prefs; export type OrgPrefs = Prefs;