expo-finance-kit
Version:
Native Expo module for Apple FinanceKit - Access financial data from Apple Card and other accounts
26 lines (25 loc) • 838 B
TypeScript
import { ConfigPlugin } from '@expo/config-plugins';
export interface ExpoFinanceKitPluginOptions {
/**
* The usage description for financial data access
* @default "This app needs access to your financial data to display account balances and transactions."
*/
usageDescription?: string;
/**
* The app group identifier for sharing data with extensions
* @default "group.{bundleIdentifier}"
*/
appGroupIdentifier?: string;
/**
* Whether to enable the background delivery extension
* @default true
*/
enableBackgroundDelivery?: boolean;
/**
* Custom background modes to add
* @default ["remote-notification", "processing"]
*/
backgroundModes?: string[];
}
declare const _default: ConfigPlugin<ExpoFinanceKitPluginOptions>;
export default _default;