49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
/*
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// this is needed to tell TS about global.Olm
|
|
import * as Olm from "olm"; // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
|
|
export {};
|
|
|
|
declare global {
|
|
namespace NodeJS {
|
|
interface Global {
|
|
localStorage: Storage;
|
|
}
|
|
}
|
|
|
|
interface MediaDevices {
|
|
// This is experimental and types don't know about it yet
|
|
// https://github.com/microsoft/TypeScript/issues/33232
|
|
getDisplayMedia(constraints: MediaStreamConstraints): Promise<MediaStream>;
|
|
}
|
|
|
|
interface HTMLAudioElement {
|
|
// sinkId & setSinkId are experimental and typescript doesn't know about them
|
|
sinkId: string;
|
|
setSinkId(outputId: string);
|
|
}
|
|
|
|
interface DummyInterfaceWeShouldntBeUsingThis {}
|
|
|
|
interface Navigator {
|
|
// We check for the webkit-prefixed getUserMedia to detect if we're
|
|
// on webkit: we should check if we still need to do this
|
|
webkitGetUserMedia: DummyInterfaceWeShouldntBeUsingThis;
|
|
}
|
|
}
|