9bc5e98238
* chore: tsify more of lib * Update lib/browser/api/session.ts Co-authored-by: Jeremy Apthorp <jeremya@chromium.org> Co-authored-by: Jeremy Apthorp <jeremya@chromium.org>
24 lines
667 B
TypeScript
24 lines
667 B
TypeScript
import { EventEmitter } from 'events';
|
|
|
|
let _inAppPurchase;
|
|
|
|
if (process.platform === 'darwin') {
|
|
const { inAppPurchase, InAppPurchase } = process.electronBinding('in_app_purchase');
|
|
|
|
// inAppPurchase is an EventEmitter.
|
|
Object.setPrototypeOf(InAppPurchase.prototype, EventEmitter.prototype);
|
|
EventEmitter.call(inAppPurchase);
|
|
|
|
_inAppPurchase = inAppPurchase;
|
|
} else {
|
|
_inAppPurchase = new EventEmitter();
|
|
Object.assign(_inAppPurchase, {
|
|
purchaseProduct: () => {
|
|
throw new Error('The inAppPurchase module can only be used on macOS');
|
|
},
|
|
canMakePayments: () => false,
|
|
getReceiptURL: () => ''
|
|
});
|
|
}
|
|
|
|
export default _inAppPurchase;
|