初始化

This commit is contained in:
2026-04-29 15:18:30 +08:00
commit e47eee39ed
111 changed files with 44168 additions and 0 deletions

12
src/class/candidate.ts Normal file
View File

@@ -0,0 +1,12 @@
export default class Candidate {
candidate: string;
sdpMLineIndex: number;
sdpMid: string;
datetime: number;
constructor(candidate: string, sdpMLineIndex: number, sdpMid: string, datetime: number) {
this.candidate = candidate;
this.sdpMLineIndex = sdpMLineIndex;
this.sdpMid = sdpMid;
this.datetime = datetime;
}
}