summaryrefslogtreecommitdiff
path: root/src/Api
diff options
context:
space:
mode:
authorAlexander NeonXP Kiryukhin <a.kiryukhin@mail.ru>2019-05-16 03:59:50 +0300
committerAlexander NeonXP Kiryukhin <a.kiryukhin@mail.ru>2019-05-16 03:59:50 +0300
commit4b01d81d3daed894bc93f77dbbbe5501a4552447 (patch)
tree04f95ad5de601687f7517bb7939ebeefabdd25da /src/Api
parent51d12073b36cf858e3edd1c906f1815f63b6ab47 (diff)
Navigation and optimisation
Diffstat (limited to 'src/Api')
-rw-r--r--src/Api/types.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Api/types.ts b/src/Api/types.ts
index 7a26bc8..5543f79 100644
--- a/src/Api/types.ts
+++ b/src/Api/types.ts
@@ -2,6 +2,7 @@ import { LatLng } from "./interfaces";
export class Portal {
fullLoad: boolean
+ address: string
constructor(
public name: string,
public photo: string,
@@ -17,6 +18,7 @@ export class Portal {
public owner: string
) {
+ this.address = ""
this.fullLoad = false
}
}