lint fix.

This commit is contained in:
Miroslav Šedivý 2020-11-29 15:50:08 +01:00
parent ac9ac7ac69
commit c3d48d39e2
3 changed files with 6 additions and 10 deletions

View File

@ -10,11 +10,7 @@ import {
AdminEvents,
} from './events'
import {
Member,
ScreenConfigurations,
ScreenResolution
} from './structs'
import { Member, ScreenConfigurations, ScreenResolution } from './structs'
export type WebSocketMessages =
| WebSocketMessage
@ -153,11 +149,11 @@ export interface ScreenConfigurationsPayload {
BROADCAST PAYLOADS
*/
export interface BroadcastCreatePayload {
url: string
url: string
}
export interface BroadcastStatusPayload {
url: string
url: string
isActive: boolean
}

View File

@ -16,7 +16,7 @@ export interface Connection {
type: 'webrtc' | 'fallback' | 'none'
can_watch: boolean
can_control: boolean
clipboard_access: boolean
clipboard_access: boolean
}
/////////////////////////////

View File

@ -11,6 +11,6 @@ module.exports = {
},
},
devServer: {
disableHostCheck: true
}
disableHostCheck: true,
},
}