| 3 | import { AudioSourceComponent } from './AudioSourceComponent'; |
| 4 | |
| 5 | class AudioRuntimeModule implements IRuntimeModule { |
| 6 | registerComponents(registry: IComponentRegistry): void { |
| 7 | registry.register(AudioSourceComponent); |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | const manifest: ModuleManifest = { |
| 12 | id: 'audio', |
nothing calls this directly
no outgoing calls
no test coverage detected