Skip to content

Commit

Permalink
Merge pull request #1631 from SimonBrandner/remove-export
Browse files Browse the repository at this point in the history
Remove export keyword from global.d.ts
  • Loading branch information
jryans committed Mar 8, 2021
2 parents 92032a1 + f630a9f commit a034ca1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/@types/global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ declare global {
getUserMedia(constraints: MediaStreamConstraints | DesktopCapturerConstraints): Promise<MediaStream>;
}

export interface DesktopCapturerConstraints {
interface DesktopCapturerConstraints {
audio: boolean | {
mandatory: {
chromeMediaSource: string;
Expand All @@ -56,7 +56,7 @@ declare global {
};
}

export interface DesktopCapturerSource {
interface DesktopCapturerSource {
id: string;
name: string;
thumbnailURL: string;
Expand Down

0 comments on commit a034ca1

Please sign in to comment.