File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
etc/api/angular_devkit/core/src
packages/angular_devkit/core/src/json/schema Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -715,6 +715,7 @@ export interface PromptDefinition {
715715 } > ;
716716 message : string ;
717717 multiselect ?: boolean ;
718+ propertyTypes : Set < string > ;
718719 raw ?: string | JsonObject ;
719720 type : string ;
720721 validator ?: ( value : JsonValue ) => boolean | string | Promise < boolean | string > ;
Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ export interface PromptDefinition {
105105
106106 raw ?: string | JsonObject ;
107107 multiselect ?: boolean ;
108+ propertyTypes : Set < string > ;
108109}
109110
110111export type PromptProvider = ( definitions : Array < PromptDefinition > )
Original file line number Diff line number Diff line change @@ -590,6 +590,7 @@ export class CoreSchemaRegistry implements SchemaRegistry {
590590 raw : schema ,
591591 items,
592592 multiselect,
593+ propertyTypes,
593594 default :
594595 typeof ( parentSchema as JsonObject ) . default == 'object' &&
595596 ( parentSchema as JsonObject ) . default !== null &&
You can’t perform that action at this time.
0 commit comments