Fixed some compile errors
This commit is contained in:
parent
94b6c5aaa5
commit
1da7541d12
5 changed files with 9 additions and 4 deletions
|
@ -137,4 +137,8 @@ export class DummyVoiceConnection extends AbstractVoiceConnection {
|
|||
}
|
||||
|
||||
stopWhisper() { }
|
||||
|
||||
getFailedMessage(): string {
|
||||
return "";
|
||||
}
|
||||
}
|
|
@ -6,7 +6,7 @@ import {server_connections} from "tc-shared/ui/frames/connection_handlers";
|
|||
import {FileBrowser, NavigationBar} from "tc-shared/ui/modal/transfer/FileBrowser";
|
||||
import {TransferInfo, TransferInfoEvents} from "tc-shared/ui/modal/transfer/TransferInfo";
|
||||
import {initializeRemoteFileBrowserController} from "tc-shared/ui/modal/transfer/RemoteFileBrowserController";
|
||||
import {ChannelEntry} from "tc-shared/ui/channel";
|
||||
import {ChannelEntry} from "tc-shared/tree/Channel";
|
||||
import {initializeTransferInfoController} from "tc-shared/ui/modal/transfer/TransferInfoController";
|
||||
import {Translatable} from "tc-shared/ui/react-elements/i18n";
|
||||
import {InternalModal} from "tc-shared/ui/react-elements/internal-modal/Controller";
|
||||
|
|
|
@ -5,7 +5,6 @@ import {
|
|||
ConnectionStateListener,
|
||||
} from "tc-shared/connection/ConnectionBase";
|
||||
import {ConnectionHandler, ConnectionState, DisconnectReason} from "tc-shared/ConnectionHandler";
|
||||
import {ServerAddress} from "tc-shared/ui/server";
|
||||
import {HandshakeHandler} from "tc-shared/connection/HandshakeHandler";
|
||||
import {ConnectionCommandHandler, ServerConnectionCommandBoss} from "tc-shared/connection/CommandHandler";
|
||||
import {CommandResult} from "tc-shared/connection/ServerConnectionDeclaration";
|
||||
|
@ -20,6 +19,7 @@ import {WrappedWebSocket} from "tc-backend/web/connection/WrappedWebSocket";
|
|||
import {AbstractVoiceConnection} from "tc-shared/connection/VoiceConnection";
|
||||
import {DummyVoiceConnection} from "tc-shared/connection/DummyVoiceConnection";
|
||||
import {parseCommand} from "tc-backend/web/connection/CommandParser";
|
||||
import {ServerAddress} from "tc-shared/tree/Server";
|
||||
|
||||
class ReturnListener<T> {
|
||||
resolve: (value?: T | PromiseLike<T>) => void;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import {ServerAddress} from "tc-shared/ui/server";
|
||||
import {AddressTarget, default_options, ResolveOptions} from "tc-shared/dns";
|
||||
import {LogCategory} from "tc-shared/log";
|
||||
import * as log from "tc-shared/log";
|
||||
import {ServerAddress} from "tc-shared/tree/Server";
|
||||
|
||||
export enum RRType {
|
||||
A = 1, // a host address,[RFC1035],
|
||||
|
|
|
@ -160,3 +160,4 @@ export class NativeWebRTCVoiceBridge extends WebRTCVoiceBridge {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue