Skip to content

Commit

Permalink
fix(utils): [ts-eslint] small type fixes (#7474)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradzacher committed Aug 15, 2023
1 parent b047c47 commit 4402db1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/utils/src/ts-eslint/ESLint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ declare class ESLintBase {
* @param results The LintResult objects to write.
* @returns The promise that will be fulfilled after all files are written.
*/
static outputFixes(results: ESLint.LintResult): Promise<void>;
static outputFixes(results: ESLint.LintResult[]): Promise<void>;
/**
* The version text.
*/
Expand Down Expand Up @@ -164,7 +164,7 @@ namespace ESLint {
* Configuration object, overrides all configurations used with this instance.
* You can use this option to define the settings that will be used even if your configuration files configure it.
*/
overrideConfig?: Linter.ConfigOverride | null;
overrideConfig?: Linter.Config | null;
/**
* The path to a configuration file, overrides all configurations used with this instance.
* The options.overrideConfig option is applied after this option is applied.
Expand Down

0 comments on commit 4402db1

Please sign in to comment.