add flow annotation

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/4056/head
Michael Telatynski 2017-05-29 20:03:21 +01:00
parent e991461e8d
commit b9ec25b32f
3 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
dis.register(_onAction);
}
getHumanReadableName() {
getHumanReadableName(): string {
return 'Electron Platform';
}

View File

@ -35,7 +35,7 @@ export default class VectorBasePlatform extends BasePlatform {
this._updateFavicon();
}
getHumanReadableName() {
getHumanReadableName(): string {
return 'Vector Base Platform';
}

View File

@ -31,7 +31,7 @@ export default class WebPlatform extends VectorBasePlatform {
this.runningVersion = null;
}
getHumanReadableName() {
getHumanReadableName(): string {
return 'Web Platform';
}