scanbot-web-sdk
Version:
Scanbot Web Document and Barcode Scanner SDK
13 lines (11 loc) • 364 B
TypeScript
/**
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 = "DARK" | "LIGHT" | "HIDDEN";
export declare const NavigationBarModeValues: NavigationBarMode[];