Fix some types approximations
This commit is contained in:
parent
9775623981
commit
73e9c16a8d
@ -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;
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user