capacitor-jok-helper
Advanced tools
Comparing version 1.35.0 to 1.36.0
@@ -0,1 +1,2 @@ | ||
import { PluginListenerHandle } from '@capacitor/core'; | ||
declare module '@capacitor/core' { | ||
@@ -91,2 +92,11 @@ interface PluginRegistry { | ||
}>; | ||
addListener(eventName: 'TransactionStateChange', listenerFunc: (x: { | ||
transactionId: string; | ||
transactionState: string; | ||
transactionReceipt: string; | ||
productId: string; | ||
hasError: boolean; | ||
errorCode: string; | ||
errorMessage: string; | ||
}) => void): Promise<PluginListenerHandle>; | ||
} | ||
@@ -93,0 +103,0 @@ export interface PlayAudioProps { |
@@ -0,2 +1,4 @@ | ||
import type { JokHelperPlugin } from './definitions'; | ||
declare const JokHelper: JokHelperPlugin; | ||
export * from './definitions'; | ||
export * from './web'; | ||
export { JokHelper }; |
@@ -0,3 +1,6 @@ | ||
import { registerPlugin } from '@capacitor/core'; | ||
import { JokHelperWeb } from './web'; | ||
const JokHelper = registerPlugin('JokHelper', () => new JokHelperWeb()); | ||
export * from './definitions'; | ||
export * from './web'; | ||
export { JokHelper }; | ||
//# sourceMappingURL=index.js.map |
@@ -93,3 +93,1 @@ import { WebPlugin } from '@capacitor/core'; | ||
} | ||
declare const JokHelper: JokHelperPlugin; | ||
export { JokHelper }; |
@@ -10,3 +10,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
}; | ||
import { registerPlugin, WebPlugin } from '@capacitor/core'; | ||
import { WebPlugin } from '@capacitor/core'; | ||
export class JokHelperWeb extends WebPlugin { | ||
@@ -151,4 +151,2 @@ constructor() { | ||
} | ||
const JokHelper = registerPlugin('JokHelper', () => new JokHelperWeb()); | ||
export { JokHelper }; | ||
//# sourceMappingURL=web.js.map |
{ | ||
"name": "capacitor-jok-helper", | ||
"version": "1.35.0", | ||
"version": "1.36.0", | ||
"description": "Helper functions for jok projects", | ||
@@ -5,0 +5,0 @@ "main": "dist/esm/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
428629
532