We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a1af4c commit 8d36199Copy full SHA for 8d36199
1 file changed
rewrite-javascript/rewrite/src/recipe.ts
@@ -102,7 +102,8 @@ export abstract class Recipe {
102
value: (this as any)[key],
103
required: descriptor.required ?? true,
104
...descriptor
105
- }))
+ })),
106
+ dataTables: this.dataTables
107
}
108
109
@@ -136,6 +137,7 @@ export interface RecipeDescriptor {
136
137
readonly estimatedEffortPerOccurrence: Minutes
138
readonly recipeList: RecipeDescriptor[]
139
readonly options: ({ name: string, value?: any } & OptionDescriptor)[]
140
+ readonly dataTables: DataTableDescriptor[]
141
142
143
export interface OptionDescriptor {
0 commit comments