Fix some types approximations

This commit is contained in:
garronej 2023-06-21 02:55:44 +02:00
parent 9775623981
commit 73e9c16a8d
3 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@ export namespace BuildOptions {
extraThemeNames: string[]; extraThemeNames: string[];
extraLoginPages: string[] | undefined; extraLoginPages: string[] | undefined;
extraAccountPages: string[] | undefined; extraAccountPages: string[] | undefined;
extraThemeProperties?: string[]; extraThemeProperties: string[] | undefined;
groupId: string; groupId: string;
artifactId: string; artifactId: string;
bundler: Bundler; bundler: Bundler;

View File

@ -9,7 +9,7 @@ export type BuildOptionsLike = {
themeName: string; themeName: string;
extraThemeNames: string[]; extraThemeNames: string[];
groupId: string; groupId: string;
artifactId?: string; artifactId: string;
themeVersion: string; themeVersion: string;
}; };

View File

@ -16,9 +16,9 @@ export type BuildOptionsLike = BuildOptionsLike.Standalone | BuildOptionsLike.Ex
export namespace BuildOptionsLike { export namespace BuildOptionsLike {
export type Common = { export type Common = {
themeName: string; themeName: string;
extraLoginPages?: string[]; extraLoginPages: string[] | undefined;
extraAccountPages?: string[]; extraAccountPages: string[] | undefined;
extraThemeProperties?: string[]; extraThemeProperties: string[] | undefined;
isSilent: boolean; isSilent: boolean;
themeVersion: string; themeVersion: string;
keycloakVersionDefaultAssets: string; keycloakVersionDefaultAssets: string;