mgtypes 1.0.26 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/Content.ts +2 -0
package/package.json
CHANGED
package/types/Content.ts
CHANGED
|
@@ -42,6 +42,7 @@ export interface AppContent {
|
|
|
42
42
|
order: number[];
|
|
43
43
|
title: string;
|
|
44
44
|
description: string;
|
|
45
|
+
icon:string;
|
|
45
46
|
};
|
|
46
47
|
};
|
|
47
48
|
}
|
|
@@ -140,6 +141,7 @@ export interface Contentable {
|
|
|
140
141
|
|
|
141
142
|
// Routes
|
|
142
143
|
routeCategory?: string;
|
|
144
|
+
distance?: string;
|
|
143
145
|
color?: string;
|
|
144
146
|
coordinates?: Position[];
|
|
145
147
|
|