1 | import { ClientApplication } from '../../client';
|
2 | import { ActionSet } from '../helper';
|
3 | import { Action, Options } from './types';
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | export declare class Scanner extends ActionSet {
|
9 | constructor(app: ClientApplication<any>, options?: Options);
|
10 | /**
|
11 | * @public
|
12 | */
|
13 | dispatch(action: Action.OPEN_CAMERA): Scanner;
|
14 | /**
|
15 | * @public
|
16 | */
|
17 | dispatch(action: Action.OPEN_NFC): Scanner;
|
18 | /**
|
19 | * @internal
|
20 | */
|
21 | private dispatchScannerAction;
|
22 | }
|
23 | /**
|
24 | * @public
|
25 | */
|
26 | export declare function create(app: ClientApplication<any>, options?: Options): Scanner;
|