capacitor-pass-to-wallet
Version:
Allow to add .pkpass files to Apple Wallet
15 lines (14 loc) • 432 B
TypeScript
import { WebPlugin } from '@capacitor/core';
import type { CapacitorPassToWalletPlugin } from './definitions';
export declare class CapacitorPassToWalletWeb extends WebPlugin implements CapacitorPassToWalletPlugin {
addMultipleToWallet(options: {
base64: string[];
}): Promise<{
message: string;
}>;
addToWallet(options: {
base64: string;
}): Promise<{
message: string;
}>;
}