-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
Add a FlagAny problem can be solved by flags, except for the problem of having too many flagsAny problem can be solved by flags, except for the problem of having too many flagsBugA bug in TypeScriptA bug in TypeScriptFix AvailableA PR has been opened for this issueA PR has been opened for this issueRecent RegressionThis is a new regression just found in the last major/minor version of TypeScript.This is a new regression just found in the last major/minor version of TypeScript.
Milestone
Description
Here is a small repro based on that package:
export default class FileReader implements Observable {
set(option: Record<string, unknown>): void;
set(name: string, value: unknown): void;
}
export interface Observable {
set(...args: [option: Record<string, unknown>] | [name: string, value: unknown] | [name: string]): void;
}
Metadata
Metadata
Assignees
Labels
Add a FlagAny problem can be solved by flags, except for the problem of having too many flagsAny problem can be solved by flags, except for the problem of having too many flagsBugA bug in TypeScriptA bug in TypeScriptFix AvailableA PR has been opened for this issueA PR has been opened for this issueRecent RegressionThis is a new regression just found in the last major/minor version of TypeScript.This is a new regression just found in the last major/minor version of TypeScript.