File tree 1 file changed +4
-4
lines changed
packages/typescript-estree
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -209,11 +209,11 @@ interface ParseAndGenerateServicesOptions extends ParseOptions {
209
209
tsconfigRootDir? : string ;
210
210
211
211
/**
212
- * Instance of a TypeScript Program object to be used for type information.
212
+ * An array of one or more instances of TypeScript Program objects to be used for type information.
213
213
* This overrides any program or programs that would have been computed from the `project` option.
214
- * All linted files must be part of the provided program.
214
+ * All linted files must be part of the provided program(s) .
215
215
*/
216
- program ? : import ( ' typescript ' ). Program ;
216
+ programs ? : Program [] ;
217
217
218
218
/**
219
219
***************************************************************************************
@@ -333,7 +333,7 @@ Types for the AST produced by the parse functions.
333
333
334
334
#### ` createProgram(configFile, projectDirectory) `
335
335
336
- This serves as a utility method for users of the ` ParseOptions.program ` feature to create a TypeScript program instance from a config file.
336
+ This serves as a utility method for users of the ` ParseOptions.programs ` feature to create a TypeScript program instance from a config file.
337
337
338
338
``` ts
339
339
declare function createProgram(
You can’t perform that action at this time.
0 commit comments