scanbot-web-sdk
Version:
Scanbot Web Document and Barcode Scanner SDK
26 lines (24 loc) • 557 B
TypeScript
/**
The visual mode used for the navigation bar icons. Android only.
- `DARK`:
Display all icons in the navigation bar in black.
- `LIGHT`:
Display all icons in the navigation bar in white.
- `HIDDEN`:
Hide the navigation bar.
*/
export type NavigationBarMode =
/**
Display all icons in the navigation bar in black.
*/
"DARK"
/**
Display all icons in the navigation bar in white.
*/
| "LIGHT"
/**
Hide the navigation bar.
*/
| "HIDDEN";
/** @hidden */
export declare const NavigationBarModeValues: ReadonlyArray<NavigationBarMode>;