Type alias RegisterForNfcDeviceEngagementOptions

RegisterForNfcDeviceEngagementOptions: {
    onEngagementCompleted?: (() => void);
    onError: ((error) => void);
    onEstablished: (() => void);
    onNfcActivated?: (() => void);
    onTerminated: ((error?) => void);
}

Type declaration

  • Optional Readonly onEngagementCompleted?: (() => void)
      • (): void
      • Returns void

  • Readonly onError: ((error) => void)
  • Readonly onEstablished: (() => void)
      • (): void
      • Called once an NFC session has been established.

        Returns void

  • Optional Readonly onNfcActivated?: (() => void)
      • (): void
      • Called right after a successful registration of NFC on the native level A connection has not yet been established, but the NFC is ready to be used.

        Returns void

  • Readonly onTerminated: ((error?) => void)

Generated using TypeDoc