@livedigital/client 3.54.2 → 3.54.3-enable-sourcemaps.1
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/engine/media/index.d.ts +0 -1
- package/dist/helpers/media.d.ts +0 -4
- package/dist/index.es.js +2 -1
- package/dist/index.es.js.map +1 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -0
- package/package.json +1 -1
|
@@ -55,6 +55,5 @@ declare class Media {
|
|
|
55
55
|
static getScreenVideoTrackParams(options?: CreateScreenMediaOptions): CreateVideoTrackParams;
|
|
56
56
|
static getCameraVideoTrackParams(options?: CreateCameraVideoTrackOptions): CreateVideoTrackParams;
|
|
57
57
|
private createDevice;
|
|
58
|
-
private normalizeUserAgentBrands;
|
|
59
58
|
}
|
|
60
59
|
export default Media;
|
package/dist/helpers/media.d.ts
CHANGED
|
@@ -3,7 +3,3 @@ export declare const detectHandlerName: (userAgent?: string) => types.BuiltinHan
|
|
|
3
3
|
export declare const getNewAudioContext: (contextOptions?: AudioContextOptions) => AudioContext | null;
|
|
4
4
|
export declare const getSupportedCodecsMimeTypes: (device: Device) => string[];
|
|
5
5
|
export declare const isVp9: (codecOrMimeType: string) => boolean;
|
|
6
|
-
export declare const normalizeUserAgentBrands: () => {
|
|
7
|
-
normalized: boolean;
|
|
8
|
-
error?: unknown;
|
|
9
|
-
};
|