forked from jsnbuchanan/crowd-funder-for-time-pwa
start the assignment of boundaries for a local search
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
export type BoundingBox = {
|
||||
maxLat: number;
|
||||
maxLong: number;
|
||||
minLat: number;
|
||||
minLong: number;
|
||||
};
|
||||
|
||||
// a singleton
|
||||
export type Settings = {
|
||||
id: number; // there's only one entry: MASTER_SETTINGS_KEY
|
||||
@@ -7,6 +14,7 @@ export type Settings = {
|
||||
firstName?: string;
|
||||
lastName?: string;
|
||||
lastViewedClaimId?: string;
|
||||
searchBoxes?: Array<BoundingBox>;
|
||||
showContactGivesInline?: boolean;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user