-
Notifications
You must be signed in to change notification settings - Fork 13.3k
@deprecated for properties of merged Interfaces #40365
Copy link
Copy link
Closed
Labels
Milestone
Description
TypeScript Version: 4.1.0-dev.20200903
Search Terms: deprecated, interface, merge
Code
interface O {
old: "old";
new: "new";
}
interface O {
/** @deprecated */
old: "old";
}
const o: O = {} as any;
const a = o.old;Expected behavior:
o.old should be marked as deprecated
Actual behavior:
o.old is not marked as deprecated
Related Issues: none as far as I know.
Reactions are currently unavailable