1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-19 00:40:11 -07:00
Pavlo Buidenkov b925803d9f better client UI code
huge work done on sharing desktop session
2020-11-22 17:07:01 +02:00

8 lines
121 B
TypeScript

export default class PeerConnection {
roomID: string;
constructor(roomID: string) {
this.roomID = roomID;
}
}