File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class Basic extends Site {
23
23
return [ prefix + id . nm , "unpaused" ] ;
24
24
}
25
25
26
- public start ( ) : void {
26
+ public override start ( ) : void {
27
27
super . start ( ) ;
28
28
29
29
for ( const entry of this . config . streamers ) {
@@ -102,7 +102,7 @@ class Basic extends Site {
102
102
return { status : false , m3u8 : "" } ;
103
103
}
104
104
105
- protected async checkStreamerState ( streamer : Streamer ) {
105
+ protected override async checkStreamerState ( streamer : Streamer ) {
106
106
// Detect if streamer is online or actively streaming
107
107
const stream = await this . m3u8Script ( streamer . uid , streamer . nm ) ;
108
108
const options : StreamerStateOptions = {
@@ -159,7 +159,7 @@ class Basic extends Site {
159
159
return serRuns ;
160
160
}
161
161
162
- public async getStreamers ( ) {
162
+ public override async getStreamers ( ) {
163
163
const ret : boolean = await super . getStreamers ( ) ;
164
164
if ( ! ret ) {
165
165
return false ;
Original file line number Diff line number Diff line change 10
10
"moduleResolution" : " node" ,
11
11
"removeComments" : false ,
12
12
"stripInternal" : true ,
13
- "noUnusedLocals" : true ,
14
- "noImplicitReturns" : true
13
+ "noFallthroughCasesInSwitch" : true ,
14
+ "noImplicitAny" : true ,
15
+ "noImplicitOverride" : true ,
16
+ "noImplicitReturns" : true ,
17
+ "noImplicitThis" : true ,
18
+ "noUnusedLocals" : true
15
19
},
16
20
"paths" : {
17
21
"core/*" : [ " src/core/*" ],
You can’t perform that action at this time.
0 commit comments