This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
Closed
Description
When defining a polymorphic interface such as
interface EdgeCall<T, TResult> {
(parameters: T, runSynchonous: boolean): TResult;
(parameters: T, callback: (error: Error, result: TResult) => void): void;
}
(this interface wasn't my idea)
The second occurrence of parameters is wrongly detected by the rule.