mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
13 lines
358 B
TypeScript
13 lines
358 B
TypeScript
interface HTMLElement {
|
|
webkitRequestFullScreen(options?: FullscreenOptions): Promise<void>;
|
|
mozRequestFullScreen(options?: FullscreenOptions): Promise<void>;
|
|
}
|
|
|
|
interface Document {
|
|
mozFullScreen: boolean;
|
|
webkitIsFullScreen: boolean;
|
|
webkitFullScreen: boolean;
|
|
|
|
mozCancelFullScreen(): Promise<void>;
|
|
webkitCancelFullScreen(): Promise<void>;
|
|
} |