12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
![]() |
import {Plugin, Cordova} from './plugin';
|
||
|
|
||
|
@Plugin({
|
||
|
name: 'Push',
|
||
|
plugin: 'phonegap-plugin-push',
|
||
|
pluginRef: 'PushNotification'
|
||
|
})
|
||
|
export class Push {
|
||
|
@Cordova()
|
||
|
static init(options:any){};
|
||
|
}
|