8 lines
101 B
TypeScript
8 lines
101 B
TypeScript
declare global {
|
|
interface Window {
|
|
webkitAudioContext: typeof AudioContext;
|
|
}
|
|
}
|
|
|
|
export {};
|