diff --git a/types/mocha/index.d.ts b/types/mocha/index.d.ts index 5ccf573a07..ef9bdf71a2 100644 --- a/types/mocha/index.d.ts +++ b/types/mocha/index.d.ts @@ -2161,7 +2161,7 @@ declare namespace Mocha { type TestInterface = (suite: Suite) => void; interface ReporterConstructor { - new (runner: Runner, options: { reporterOptions?: any; }): reporters.Base; + new (runner: Runner, options: MochaOptions): reporters.Base; } type Done = (err?: any) => void;