@jackobo/capacitor-pass-to-wallet
Version:
Capacitor plugin for adding digital passes to Apple and Google wallet
17 lines (16 loc) • 383 B
TypeScript
/**
* addToWallet method parameters
*/
export interface IAddToWalletOptions {
base64PassesContent: string[];
}
/**
* Capacitor plugin for adding passes to Google & Apple wallets
*/
export interface CapacitorPassToWalletPlugin {
/**
* Adds one or more passes to the wallet
* @param options
*/
addToWallet(options: IAddToWalletOptions): Promise<void>;
}