@revolugo/common 7.10.0-alpha.119 → 7.10.0-alpha.120
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/src/types/elements/event.ts +12 -0
- package/src/types/event.ts +2 -0
package/package.json
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
export interface Event {
|
|
2
|
+
/**
|
|
3
|
+
* Latitude of the event venue
|
|
4
|
+
* @type {number}
|
|
5
|
+
* @memberof EventApi
|
|
6
|
+
*/
|
|
7
|
+
latitude?: number | null
|
|
8
|
+
/**
|
|
9
|
+
* Longitude of the event venue
|
|
10
|
+
* @type {number}
|
|
11
|
+
* @memberof EventApi
|
|
12
|
+
*/
|
|
13
|
+
longitude?: number | null
|
|
2
14
|
/**
|
|
3
15
|
* Unique name of the event
|
|
4
16
|
* @type {string}
|