File tree Expand file tree Collapse file tree 3 files changed +2
-31
lines changed Expand file tree Collapse file tree 3 files changed +2
-31
lines changed Original file line number Diff line number Diff line change 15
15
>
16
16
</ noscript >
17
17
< div id ="app "> </ div >
18
- < script type ="module " src ="/src/main.ts "> </ script >
18
+ < script type ="module " src ="/src/main.js "> </ script >
19
19
</ body >
20
20
</ html >
Original file line number Diff line number Diff line change 41
41
</main >
42
42
</template >
43
43
44
- <script lang="ts" >
44
+ <script >
45
45
import { defineComponent } from " vue" ;
46
46
47
47
import daily, {
@@ -57,36 +57,7 @@ import ScreenshareTile from "./ScreenshareTile.vue";
57
57
import LoadingTile from " ./LoadingTile.vue" ;
58
58
import PermissionsErrorMsg from " ./PermissionsErrorMsg.vue" ;
59
59
60
- interface Participant {
61
- session_id: string ;
62
- user_id: string ;
63
- user_name: string ;
64
- local: boolean ;
65
- video: boolean ;
66
- audio: boolean ;
67
- screen: boolean ;
68
- }
69
-
70
- interface Message {
71
- name: string ;
72
- message: string ;
73
- }
74
-
75
- interface CallTileData {
76
- callObject: null | DailyCall ;
77
- loading: boolean ;
78
- error: string ;
79
- showPermissionsError: boolean ;
80
- participants: Participant [];
81
- screen: unknown ; // video track
82
- messages: Message [];
83
- count: number ;
84
- }
85
60
86
- type Tracks = {
87
- videoTrack: MediaStreamTrack | null ;
88
- audioTrack: MediaStreamTrack | null ;
89
- };
90
61
91
62
export default defineComponent ({
92
63
name: " CallTile" ,
File renamed without changes.
You can’t perform that action at this time.
0 commit comments