1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00

Merge pull request #1631 from SimonBrandner/remove-export

Remove export keyword from global.d.ts
This commit is contained in:
J. Ryan Stinnett
2021-03-08 14:11:37 +00:00
committed by GitHub

View File

@@ -41,7 +41,7 @@ declare global {
getUserMedia(constraints: MediaStreamConstraints | DesktopCapturerConstraints): Promise<MediaStream>; getUserMedia(constraints: MediaStreamConstraints | DesktopCapturerConstraints): Promise<MediaStream>;
} }
export interface DesktopCapturerConstraints { interface DesktopCapturerConstraints {
audio: boolean | { audio: boolean | {
mandatory: { mandatory: {
chromeMediaSource: string; chromeMediaSource: string;
@@ -56,7 +56,7 @@ declare global {
}; };
} }
export interface DesktopCapturerSource { interface DesktopCapturerSource {
id: string; id: string;
name: string; name: string;
thumbnailURL: string; thumbnailURL: string;