UNPKG

@idfy/sdk

Version:
23 lines (22 loc) 569 B
export interface UiSettings { /** * Whether to hide the logo and title of the selected eID provider. */ hideProviderHeader?: boolean; /** * Whether to hide the footer with the language switcher. */ hideFooter?: boolean; /** * Whether to use light or dark theme. */ themeMode?: UiSettings.ThemeMode; /** * The color theme to use. */ colorTheme?: UiSettings.ColorTheme; } export declare namespace UiSettings { type ThemeMode = 'light' | 'dark'; type ColorTheme = 'default' | 'light_blue'; }