mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-02 04:05:56 +00:00
35 lines
994 B
TypeScript
35 lines
994 B
TypeScript
/*
|
|
Copyright 2022-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import { type setLogLevel as setLKLogLevel } from "livekit-client";
|
|
|
|
import type { DurationFormat as PolyfillDurationFormat } from "@formatjs/intl-durationformat";
|
|
import { type Controls } from "../controls";
|
|
|
|
declare global {
|
|
interface Document {
|
|
// Safari only supports this prefixed, so tell the type system about it
|
|
webkitExitFullscreen: () => void;
|
|
webkitFullscreenElement: HTMLElement | null;
|
|
}
|
|
|
|
interface Window {
|
|
controls: Controls;
|
|
setLKLogLevel: typeof setLKLogLevel;
|
|
}
|
|
|
|
interface HTMLElement {
|
|
// Safari only supports this prefixed, so tell the type system about it
|
|
webkitRequestFullscreen: () => void;
|
|
}
|
|
|
|
namespace Intl {
|
|
// Add DurationFormat as part of the Intl namespace because we polyfill it
|
|
const DurationFormat: typeof PolyfillDurationFormat;
|
|
}
|
|
}
|