File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,11 @@ export interface CollectionDefinition extends ItemGroupDefinition {
180180 id ?: string | undefined ;
181181 name ?: string | undefined ;
182182 version ?: string | undefined ;
183+ description ?: {
184+ content ?: string | undefined ;
185+ type ?: string | undefined ;
186+ version ?: string | undefined ;
187+ } | undefined ;
183188 } | undefined ;
184189 variable ?: VariableDefinition [ ] | undefined ;
185190}
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ pmCollection.ItemGroup.isItemGroup(ig); // $ExpectType boolean
153153
154154// CollectionDefinition Tests
155155const colDef : pmCollection . CollectionDefinition = { } ;
156- colDef . info ; // $ExpectType { id?: string | undefined; name?: string | undefined; version?: string | undefined; } | undefined
156+ colDef . info ; // $ExpectType { id?: string | undefined; name?: string | undefined; version?: string | undefined; description?: { content?: string | undefined; type?: string | undefined; version?: string | undefined; } | undefined; } | undefined
157157colDef . variable ; // $ExpectType VariableDefinition[] | undefined
158158
159159let collection : pmCollection . Collection ;
You can’t perform that action at this time.
0 commit comments