@idscan/onboarding 2.2.21 → 2.2.23

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.
@@ -95,7 +95,7 @@ export interface IWrapperConfig {
95
95
  processingImageFormat?: 'jpeg' | 'png' | 'webp';
96
96
  }
97
97
  export interface LibConfig {
98
- IDVCConfig: IDVCConfig;
98
+ IdvcConfig: IDVCConfig;
99
99
  CSSStylesConfig: JSONString;
100
100
  CSSVariablesConfig: JSONString;
101
101
  }
@@ -3,12 +3,12 @@ import { IDataForSubmit, IDVCConfig, LibConfig } from '../@types/Data';
3
3
  import { IValidationModel } from '../@types/Api/Requests';
4
4
  export default class Lib {
5
5
  private library;
6
- private IDVCConfig;
6
+ private IdvcConfig;
7
7
  private CSSStylesConfig;
8
8
  private CSSVariablesConfig;
9
9
  get initialized(): boolean;
10
- get version(): any;
11
- set configs({ IDVCConfig, CSSStylesConfig, CSSVariablesConfig }: LibConfig);
10
+ get version(): string;
11
+ set configs({ IdvcConfig, CSSStylesConfig, CSSVariablesConfig }: LibConfig);
12
12
  set loading(val: boolean);
13
13
  init(): void;
14
14
  cleanBase64: (base64EncodedImage: string | undefined | null) => string;