1 | /**
|
2 | * Action Types for the Features group
|
3 | * @public
|
4 | */
|
5 | export declare enum ActionType {
|
6 | OPEN_CAMERA = "APP::SCANNER::OPEN::CAMERA",
|
7 | OPEN_NFC = "APP::SCANNER::OPEN::NFC",
|
8 | CAPTURE = "APP::SCANNER::CAPTURE"
|
9 | }
|
10 | /**
|
11 | * Actions available to the Features group
|
12 | * @public
|
13 | */
|
14 | export declare enum Action {
|
15 | OPEN_CAMERA = "OPEN::CAMERA",
|
16 | OPEN_NFC = "OPEN::NFC",
|
17 | CAPTURE = "CAPTURE"
|
18 | }
|
19 | /**
|
20 | * Payload for APP::SCANNER::CAPTURE
|
21 | * @public
|
22 | */
|
23 | export interface Data {
|
24 | scanData?: string;
|
25 | }
|
26 | export interface Payload {
|
27 | readonly data: Data;
|
28 | }
|
29 | export interface Options {
|
30 | readonly id?: string;
|
31 | }
|