generator-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
18 lines (17 loc) • 799 B
TypeScript
import type { Application as VueApplication } from './types.ts';
export type VueAddedApplicationProperties = {
vueBootstrapBsTheme: string;
vueBootstrapVariant: string;
};
export declare const mutateApplication: {
readonly __override__: false;
readonly exposeMicrofrontend: ({ microfrontend }: VueApplication) => boolean;
/**
* Color mode https://getbootstrap.com/docs/5.3/customize/color-modes/
*/
readonly vueBootstrapBsTheme: ({ clientThemeNone, clientThemeVariantLight }: VueApplication) => "dark" | "light";
/**
* https://bootstrap-vue-next.github.io/bootstrap-vue-next/docs/components/navbar.html#comp-reference-bnavbar-properties
*/
readonly vueBootstrapVariant: ({ clientThemeVariant }: VueApplication) => "primary" | "dark" | "light";
};