Fix missing options

This commit is contained in:
hensm
2019-07-26 00:13:44 +01:00
parent ba8c28bf39
commit b213a8d85c
2 changed files with 6 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
"use strict";
import mediaCasting from "./mediaCasting";
import { stringify } from "./utils";
import { ReceiverSelection

View File

@@ -2,6 +2,7 @@
import defaultOptions from "../defaultOptions";
import { ReceiverSelectorType } from "../receiver_selectors";
import { Message } from "../types";
import { TypedEventTarget } from "./typedEvents";
@@ -15,6 +16,9 @@ export interface Options {
localMediaServerPort: number;
mirroringEnabled: boolean;
mirroringAppId: string;
receiverSelectorType: ReceiverSelectorType.Popup;
receiverSelectorCloseIfFocusLost: boolean;
receiverSelectorWaitForConnection: boolean;
userAgentWhitelistEnabled: boolean;
userAgentWhitelist: string[];