1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2019-02-24 01:20:49 +00:00
parent b02b371250
commit 45e9dbe49d

View File

@@ -114,28 +114,28 @@ export default class BasePlatform {
throw new Error("reload not implemented!");
}
supportsAutoLaunch() {
supportsAutoLaunch(): boolean {
return false;
}
// XXX: Surely this should be a setting like any other?
async getAutoLaunchEnabled() {
async getAutoLaunchEnabled(): boolean {
return false;
}
async setAutoLaunchEnabled(enabled) {
async setAutoLaunchEnabled(enabled: boolean) {
throw new Error("Unimplemented");
}
supportsMinimizeToTray() {
supportsMinimizeToTray(): boolean {
return false;
}
async getMinimizeToTrayEnabled() {
async getMinimizeToTrayEnabled(): boolean {
return false;
}
async setMinimizeToTrayEnabled() {
async setMinimizeToTrayEnabled(enabled: boolean) {
throw new Error("Unimplemented");
}
}