scanbot-web-sdk
Version:
Scanbot Web Document and Barcode Scanner SDK
26 lines (24 loc) • 729 B
TypeScript
/**
The visual mode used for the bottom bar.
- `SOLID`:
Display the bottom bar with a background color or with transparency.
- `GRADIENT`:
Display the bottom bar with a gradient background color or a gradient with transparency. The buttons will still be visible.
- `HIDDEN`:
Hide the bottom bar completely.
*/
export type BottomBarMode =
/**
Display the bottom bar with a background color or with transparency.
*/
"SOLID"
/**
Display the bottom bar with a gradient background color or a gradient with transparency. The buttons will still be visible.
*/
| "GRADIENT"
/**
Hide the bottom bar completely.
*/
| "HIDDEN";
/** @hidden */
export declare const BottomBarModeValues: ReadonlyArray<BottomBarMode>;