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