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