Skip to content

Commit

Permalink
feat: add custom labels text support to scan nfc process
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielFRico committed Dec 6, 2024
1 parent 2cdfa94 commit 6d7b7f1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ export type StartReadingParams = {
includeImages?: boolean; // default: false
includeRawData?: boolean; // default: false
labels?: {
title?: string,
cancelButton?: string,
requestPresentPassport?: string,
authenticatingWithPassport?: string,
reading?: string,
activeAuthentication?: string,
successfulRead?: string,
tagNotValid?: string,
moreThanOneTagFound?: string,
invalidMRZKey?: string,
title?: string;
cancelButton?: string;
requestPresentPassport?: string;
authenticatingWithPassport?: string;
reading?: string;
activeAuthentication?: string;
successfulRead?: string;
tagNotValid?: string;
moreThanOneTagFound?: string;
invalidMRZKey?: string;
error?: string

Check failure on line 44 in src/index.tsx

View workflow job for this annotation

GitHub Actions / lint

Insert `;`
}

Check failure on line 45 in src/index.tsx

View workflow job for this annotation

GitHub Actions / lint

Insert `;`
};
Expand Down

0 comments on commit 6d7b7f1

Please sign in to comment.