@myinterview/widget-react 1.1.32 → 1.1.33-development-4b4def5

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.
@@ -5,18 +5,18 @@ export interface IVideoDimensions {
5
5
  }
6
6
  export interface IVideoPlatformOS {
7
7
  architecture: number;
8
- family: string;
9
- version: string;
8
+ family?: string;
9
+ version?: string;
10
10
  }
11
11
  export interface IVideoPlatform {
12
12
  description: string;
13
- layout: string;
14
- manufacturer: string;
15
- name: string;
16
- prerelease: string;
17
- product: string;
13
+ layout?: string;
14
+ manufacturer: null;
15
+ name?: string;
16
+ prerelease: null;
17
+ product?: string;
18
18
  ua: string;
19
- version: string;
19
+ version?: string;
20
20
  os: IVideoPlatformOS;
21
21
  }
22
22
  export interface IVideoFile {
@@ -1,3 +1,5 @@
1
+ import { IVideoPlatform } from '../interfaces/videoInterface';
2
+ export declare const getUAParserData: (userAgent: string) => IVideoPlatform | undefined;
1
3
  export declare const isMobile: boolean;
2
4
  export declare const isAndroid: boolean;
3
5
  export declare const isIphone: boolean;