@iotize/ionic
Version:
Iotize specific building blocks on top of @ionic/angular.
9 lines (8 loc) • 319 B
TypeScript
import { NfcTag } from '@awesome-cordova-plugins/nfc';
export type NfcTechType = 'android.nfc.tech.NfcV' | 'android.nfc.tech.Ndef';
export type NfcTagType = 'android.ndef.unknown';
export type NfcEventType = 'ndef';
export type TagDiscoveredEvent = {
tag: NfcTag;
};
export type MimeTypeEvent = TagDiscoveredEvent;