dataset-types 3.0.27 → 3.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.
Files changed (3) hide show
  1. package/index.d.ts +5 -0
  2. package/index.js +0 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -285,4 +285,9 @@ export interface ITenant extends IEntity, IName, ITimed, IContext {
285
285
  underlay: string;
286
286
  epsg: string;
287
287
  }
288
+ export type IDatasetTable = any[];
289
+ export type IDatasetsPackage = {
290
+ [datatype: string]: any[];
291
+ };
292
+ export type ICleanTransformCallback = (data: IDatasetTable, datatype: string) => IDatasetsPackage;
288
293
  export {};
package/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dataset-types",
3
- "version": "3.0.27",
3
+ "version": "3.0.28",
4
4
  "scripts": {
5
5
  "start": "npm run build && npm run package",
6
6
  "build": "tsc --rootDir 'src/types' --outDir './dist'",