mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-02-27 18:22:41 -08:00
15 lines
241 B
TypeScript
15 lines
241 B
TypeScript
declare global {
|
|
interface Window {
|
|
documentPictureInPicture: {
|
|
requestWindow: (arg?: {
|
|
height?: number;
|
|
width?: number;
|
|
preferInitialWindowPlacement?: boolean;
|
|
}) => Promise<Window | undefined>;
|
|
};
|
|
}
|
|
}
|
|
|
|
export { };
|
|
|