mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-24 21:15:28 +00:00
9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
import { getSupportedRtpCapabilities } from "mediasoup";
|
|
|
|
async function test() {
|
|
console.log(getSupportedRtpCapabilities());
|
|
}
|
|
setTimeout(() => {}, 1000000);
|
|
|
|
test();
|