forked from matrix/element-web
add flow annotation
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
e991461e8d
commit
b9ec25b32f
|
@ -67,7 +67,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
|
|||
dis.register(_onAction);
|
||||
}
|
||||
|
||||
getHumanReadableName() {
|
||||
getHumanReadableName(): string {
|
||||
return 'Electron Platform';
|
||||
}
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ export default class VectorBasePlatform extends BasePlatform {
|
|||
this._updateFavicon();
|
||||
}
|
||||
|
||||
getHumanReadableName() {
|
||||
getHumanReadableName(): string {
|
||||
return 'Vector Base Platform';
|
||||
}
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ export default class WebPlatform extends VectorBasePlatform {
|
|||
this.runningVersion = null;
|
||||
}
|
||||
|
||||
getHumanReadableName() {
|
||||
getHumanReadableName(): string {
|
||||
return 'Web Platform';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue