feat(plugin): add DB Meter

This commit is contained in:
Ibrahim Hadeed 2016-03-13 13:34:19 -04:00
parent e1dc6061bd
commit 22bb218e10

30
src/plugins/dbmeter.ts Normal file
View File

@ -0,0 +1,30 @@
import {Plugin, Cordova} from './plugin'
// TODO docs
/**
* @name DB Meter
* @description
* @platforms Android, iOS
* @usage
*/
@Plugin({
plugin: 'cordova-plugin-dbmeter',
pluginRef: 'DBMeter',
repo: 'https://github.com/akofman/cordova-plugin-dbmeter'
})
export class DBMeter {
// TODO use observable instead
@Cordova()
static start () : Promise<any> {return}
@Cordova()
static stop () : Promise<any> {return}
@Cordova()
static isListening() : Promise<boolean> {return}
@Cordova()
static delete() : Promise<any> {return}
}