interface HTMLElement {
webkitRequestFullScreen(options?: FullscreenOptions): Promise;
mozRequestFullScreen(options?: FullscreenOptions): Promise;
}
interface Document {
mozFullScreen: boolean;
webkitIsFullScreen: boolean;
webkitFullScreen: boolean;
mozCancelFullScreen(): Promise;
webkitCancelFullScreen(): Promise;
}