| 64 | |
| 65 | // Audio system types |
| 66 | export interface AudioData { |
| 67 | audioContexts: { [key: string]: AudioContext }; |
| 68 | audioProcessors: { [key: string]: any }; |
| 69 | audioSources: { [key: string]: any }; |
| 70 | audioBuffers: { [key: string]: any }; |
| 71 | audioSamples: { [key: string]: Int16Array }; |
| 72 | hasActiveSamples?: boolean; |
| 73 | } |
| 74 | |
| 75 | export interface AudioBufferStorage { |
| 76 | audioId: string; |
nothing calls this directly
no outgoing calls
no test coverage detected