Open
Description
The [ID-prep] set of issues aligns Declaration Emit with the forthcoming Isolated Declarations feature.
π Search Terms
const declaration widen
π Version & Regression Information
- This is the behavior in every version I tried
β― Playground Link
π» Code
declare function f3<T>(a: T, b: T): T;
const x3 = f3("abc", "def"); // "abc" | "def"
π Actual behavior
x3
is emitted as declare const x3: string;
in declaration files but it's actually "abc" | "def"
in source
π Expected behavior
x3
is emitted as declare const x3: "abc" | "def"
Additional information about the issue
No response