// a singleton export type Settings = { id: number; // there's only one entry: MASTER_SETTINGS_KEY activeDid?: string; apiServer?: string; firstName?: string; lastName?: string; showContactGivesInline?: boolean; }; export const SettingsSchema = { settings: "id", }; export const MASTER_SETTINGS_KEY = 1;