// a singleton export type Settings = { id: number; firstName?: string; lastName?: string; showContactGivesInline?: boolean; }; export const SettingsSchema = { settings: "id", }; export const MASTER_SETTINGS_KEY = 1;