-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Gs1Reader): allow ad hoc Ai to be passed on reader configuration
Allow consumers to set non-standard AI in reader configuration or just set standard AI that have not been implemented yet re #44
- Loading branch information
1 parent
d841d0e
commit e64a7a5
Showing
3 changed files
with
62 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import { ApplicationIdentifier } from '.'; | ||
import { IEmbeddedData } from './embedded-data'; | ||
|
||
export interface IReaderConfiguration { | ||
symbology: string; | ||
delimiter?: string; | ||
identifier?: string; | ||
values?: IEmbeddedData[]; | ||
ai?: ApplicationIdentifier; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters