expo-finance-kit
Version:
Native Expo module for Apple FinanceKit - Access financial data from Apple Card and other accounts
14 lines • 490 B
TypeScript
import { AuthorizationStatus } from './ExpoFinanceKit.types';
/**
* Request authorization and return the final status
* This handles the async nature of the authorization flow
*/
export declare function requestAuthorizationWithStatus(): Promise<{
granted: boolean;
status: AuthorizationStatus;
}>;
/**
* Helper to ensure we have authorization before accessing financial data
*/
export declare function ensureAuthorized(): Promise<boolean>;
//# sourceMappingURL=helpers.d.ts.map