mirror of
https://github.com/pavlobu/deskreen.git
synced 2025-05-18 16:30:10 -07:00
8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
export default class PeerConnection {
|
|
roomID: string;
|
|
|
|
constructor(roomID: string) {
|
|
this.roomID = roomID;
|
|
}
|
|
}
|