8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare global {
|
|
interface Window {
|
|
takeHeapSnapshot?: () => void;
|
|
vframes: VideoFrame[];
|
|
}
|
|
} |