You've already forked matrix-js-sdk
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:
4
src/@types/global.d.ts
vendored
4
src/@types/global.d.ts
vendored
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user