You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
557 B
28 lines
557 B
export type BoundingBox = {
|
|
eastLong: number;
|
|
maxLat: number;
|
|
minLat: number;
|
|
westLong: number;
|
|
};
|
|
|
|
// a singleton
|
|
export type Settings = {
|
|
id: number; // there's only one entry: MASTER_SETTINGS_KEY
|
|
|
|
activeDid?: string;
|
|
apiServer?: string;
|
|
firstName?: string;
|
|
lastName?: string; // deprecated, pre v 0.1.3
|
|
lastViewedClaimId?: string;
|
|
searchBoxes?: Array<{
|
|
name: string;
|
|
bbox: BoundingBox;
|
|
}>;
|
|
showContactGivesInline?: boolean;
|
|
};
|
|
|
|
export const SettingsSchema = {
|
|
settings: "id",
|
|
};
|
|
|
|
export const MASTER_SETTINGS_KEY = 1;
|
|
|