generator-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
17 lines (16 loc) • 683 B
TypeScript
import type { Application as ReactApplication } from './types.d.ts';
export type ReactAddedApplicationProperties = {
reactBootstrapBsTheme: string;
reactBootstrapVariant: string;
};
export declare const mutateApplication: {
readonly __override__: false;
/**
* Color mode https://getbootstrap.com/docs/5.3/customize/color-modes/
*/
readonly reactBootstrapBsTheme: ({ clientThemeNone, clientThemeVariantLight }: ReactApplication) => "dark" | "light";
/**
* https://react-bootstrap.github.io/components/navbar/#navbar-props
*/
readonly reactBootstrapVariant: ({ clientThemeVariant }: ReactApplication) => "primary" | "dark" | "light";
};