dataset-types 3.0.42 → 3.0.44
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 +4 -1
- package/index.js +0 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -271,7 +271,10 @@ export interface IManageDatasetReplayConfiguration {
|
|
|
271
271
|
useFiles?: {
|
|
272
272
|
[datatype: string]: HOOK_USE_FILES;
|
|
273
273
|
};
|
|
274
|
-
customReplay
|
|
274
|
+
customReplay?: {
|
|
275
|
+
name: string;
|
|
276
|
+
process: (log: ILog, base64content: string) => Promise<ILog[]>;
|
|
277
|
+
};
|
|
275
278
|
}
|
|
276
279
|
export interface IMenuLink {
|
|
277
280
|
path: string;
|
package/index.js
CHANGED
|
File without changes
|