UNPKG

@nevis-security/nevis-mobile-authentication-sdk-react

Version:

React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.

30 lines 1.16 kB
/** * Copyright © 2025 Nevis Security AG. All rights reserved. */ /** * The configuration related to application attestation. * * If the backend (nevisFIDO) requires application attestation, you must provide this information, * so that the mobile SDK can send the required app integrity information. */ export declare abstract class AppAttestation { /** * The {@link https://cloud.google.com/resource-manager/docs/creating-managing-projects#before_you_begin | Google Cloud project number}. * * **IMPORTANT** \ * This property is Android specific and will be ignored by iOS native plugin. */ abstract googleCloudProjectNumber: number; /** * Default constructor for {@link AppAttestation}. * * @param googleCloudProjectNumber The Google Cloud project number. * @returns the created {@link AppAttestation} instance. */ static create(googleCloudProjectNumber: number): AppAttestation; } export declare class AppAttestationImpl extends AppAttestation { googleCloudProjectNumber: number; constructor(googleCloudProjectNumber: number); } //# sourceMappingURL=AppAttestation.d.ts.map