File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ type Command = HandleCommandTypes<typeof command>;
2929
3030export type SpringBootModule = keyof ( typeof springBootDependencies ) [ 'modules' ] ;
3131
32+ export type SpringBootProperties = keyof ( typeof springBootDependencies ) [ 'properties' ] ;
33+
3234export type Config = Command [ 'Config' ] & JavaConfig & ServerConfig & CommonConfig ;
3335
3436export type Options = Command [ 'Options' ] & JavaOptions & ServerOptions ;
@@ -91,7 +93,7 @@ export type Source = JavaSource &
9193 /**
9294 * Override a property defined in Spring Boot Dependencies POM.
9395 */
94- overrideProperty ?( { property, value } : { property : SpringBootModule ; value : string } ) : void ;
96+ overrideProperty ?( { property, value } : { property : SpringBootProperties ; value : string } ) : void ;
9597 /**
9698 * @example
9799 * addApplicationPropertiesClass({
You can’t perform that action at this time.
0 commit comments