akiles-cordova
    Preparing search index...

    Interface Card

    Represents a card scanned with the Akiles system.

    interface Card {
        isAkilesCard: boolean;
        uid: string;
        close(): void;
        update(): Promise<void>;
    }
    Index

    Properties

    Methods

    Properties

    isAkilesCard: boolean

    Whether the card is an Akiles card.

    uid: string

    The UID of the card.

    Methods