dataset-types 3.0.19 → 3.0.20

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.
Files changed (2) hide show
  1. package/index.d.ts +6 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -271,4 +271,10 @@ export interface IMenuAction {
271
271
  isActive?: boolean;
272
272
  click?: () => void;
273
273
  }
274
+ export interface ITenant extends INamedEntity, ITimed {
275
+ lat: string;
276
+ lon: string;
277
+ underlay: string;
278
+ epsg: string;
279
+ }
274
280
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.0.19",
3
+ "version": "3.0.20",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",