UNPKG

@capawesome/capacitor-live-update

Version:

Capacitor plugin to update your app remotely in real-time.

67 lines 1.71 kB
import { WebPlugin } from '@capacitor/core'; export class LiveUpdateWeb extends WebPlugin { async deleteBundle(_options) { this.throwUnimplementedError(); } async downloadBundle(_options) { this.throwUnimplementedError(); } async fetchLatestBundle() { this.throwUnimplementedError(); } async getBundle() { this.throwUnimplementedError(); } async getBundles() { this.throwUnimplementedError(); } async getChannel() { this.throwUnimplementedError(); } async getCurrentBundle() { this.throwUnimplementedError(); } async getCustomId() { this.throwUnimplementedError(); } async getDeviceId() { this.throwUnimplementedError(); } async getNextBundle() { this.throwUnimplementedError(); } async getVersionCode() { this.throwUnimplementedError(); } async getVersionName() { this.throwUnimplementedError(); } async ready() { this.throwUnimplementedError(); } async reload() { this.throwUnimplementedError(); } async reset() { this.throwUnimplementedError(); } async setBundle(_options) { this.throwUnimplementedError(); } async setChannel(_options) { this.throwUnimplementedError(); } async setCustomId(_options) { this.throwUnimplementedError(); } async setNextBundle(_options) { this.throwUnimplementedError(); } async sync() { this.throwUnimplementedError(); } throwUnimplementedError() { throw this.unimplemented('Not implemented on web.'); } } //# sourceMappingURL=web.js.map