dataset-types 3.0.34 → 3.0.35
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/index.d.ts +3 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -299,7 +299,8 @@ export type IDatasetsPackage = {
|
|
|
299
299
|
[datatype: string]: IDatasetTable;
|
|
300
300
|
};
|
|
301
301
|
export type ICleanTransformCallback = (data: IDatasetTable, datatype: string) => IDatasetsPackage;
|
|
302
|
-
export type
|
|
303
|
-
export type
|
|
302
|
+
export type IGetIdsForDataCallback = (datatype: string, data: IDatasetTable) => string[];
|
|
303
|
+
export type IGetDataByIdsCallback = (datatype: string, ids: string[]) => IDatasetTable;
|
|
304
|
+
export type ICombineExistingAndUpdateCallback = (datatype: string, updatedata: IDatasetTable, existing: IDatasetTable) => Promise<IDatasetTable>;
|
|
304
305
|
export type IFileChoiceCallback = () => IFileSelection[];
|
|
305
306
|
export {};
|