Move version specific stuff to vector

This commit is contained in:
David Baker 2016-11-02 17:44:57 +00:00
parent b057577b15
commit bd3fa6a7c5

View file

@ -38,21 +38,4 @@ export default class BasePlatform {
displayNotification(title: string, msg: string, avatarUrl: string) {
}
/**
* Check for the availability of an update to the version of the
* app that's currently running.
* If an update is available, this function should dispatch the
* 'new_version' action.
*/
pollForUpdate() {
}
/**
* Update the currently running app to the latest available
* version and replace this instance of the app with the
* new version.
*/
installUpdate() {
}
}