Skip to content

Commit

Permalink
feat(plugin): add DB Meter
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadeed committed Mar 13, 2016
1 parent e1dc606 commit 22bb218
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/plugins/dbmeter.ts
Original file line number Diff line number Diff line change
@@ -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}

}

0 comments on commit 22bb218

Please sign in to comment.