no-redeclare

This commit is contained in:
Alexander T
2019-06-27 12:29:32 +03:00
parent 810303542d
commit 136f4cfc0f
15 changed files with 26 additions and 5 deletions

View File

@@ -12,6 +12,7 @@ declare class FailedTestsReporter extends Mocha.reporters.Base {
done(failures: number, fn?: (failures: number) => void): void;
}
// eslint-disable-next-line no-redeclare
declare namespace FailedTestsReporter {
interface ReporterOptions {
file?: string;
@@ -19,4 +20,4 @@ declare namespace FailedTestsReporter {
reporter?: string | Mocha.ReporterConstructor;
reporterOptions?: any;
}
}
}