@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 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 performType)[keyof typeof performType] | undefined;
174
+ declare type PerformType = (typeof PerformTypes)[keyof typeof PerformTypes] | undefined;
175
175
 
176
- declare const performType: {
176
+ declare const PerformTypes: {
177
177
  readonly FORM: "form";
178
178
  readonly DATA: "data";
179
179
  };