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