@regulaforensics/idv-gui 3.2.283 → 3.2.284-nightly
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/dist/index.d.ts +2 -2
- package/dist/main.iife.js +4 -4
- package/dist/main.js +359 -359
- package/dist/main.umd.cjs +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -171,9 +171,9 @@ declare type JsonObject = {
|
|
|
171
171
|
|
|
172
172
|
declare type JsonValue = string | number | boolean | null | JsonObject | JsonArray;
|
|
173
173
|
|
|
174
|
-
declare type PerformType = (typeof
|
|
174
|
+
declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
|
|
175
175
|
|
|
176
|
-
declare const
|
|
176
|
+
declare const PerformTypes: {
|
|
177
177
|
readonly FORM: "form";
|
|
178
178
|
readonly DATA: "data";
|
|
179
179
|
};
|