File tree 3 files changed +21
-0
lines changed
3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -2230,6 +2230,14 @@ Generated by [AVA](https://avajs.dev).
2230
2230
maybe?: string;␊
2231
2231
[k: string]: Leaf | undefined;␊
2232
2232
};␊
2233
+ pattern?: {␊
2234
+ maybe?: string;␊
2235
+ /**␊
2236
+ * This interface was referenced by \`undefined\`'s JSON-Schema definition␊
2237
+ * via the \`patternProperty\` "leaf|tree".␊
2238
+ */␊
2239
+ [k: string]: unknown[] | undefined;␊
2240
+ };␊
2233
2241
[k: string]: string | undefined;␊
2234
2242
}␊
2235
2243
export interface Leaf {␊
Original file line number Diff line number Diff line change @@ -22,6 +22,19 @@ export const input = {
22
22
} ,
23
23
} ,
24
24
} ,
25
+ pattern : {
26
+ type : 'object' ,
27
+ properties : {
28
+ maybe : {
29
+ type : 'string' ,
30
+ } ,
31
+ } ,
32
+ patternProperties : {
33
+ 'leaf|tree' : {
34
+ type : 'array' ,
35
+ } ,
36
+ } ,
37
+ } ,
25
38
} ,
26
39
additionalProperties : {
27
40
type : 'string' ,
You can’t perform that action at this time.
0 commit comments