mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-14 04:05:23 +08:00
30 lines
557 B
TypeScript
30 lines
557 B
TypeScript
![]() |
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}
|
||
|
|
||
|
}
|