-
Notifications
You must be signed in to change notification settings - Fork 13k
Open
Labels
BugA bug in TypeScriptA bug in TypeScriptEffort: CasualGood issue if you're already used to contributing to the codebase. Harder than "good first issue".Good issue if you're already used to contributing to the codebase. Harder than "good first issue".Experimentation NeededSomeone needs to try this out to see what happensSomeone needs to try this out to see what happensHelp WantedYou can do thisYou can do this
Milestone
Description
Bug Report
π Search Terms
stripInternal
π Version & Regression Information
- This is a crash
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about
stripInternal
β― Playground Link
Playground link with relevant code
π» Code
/module.ts
/** @internal */
export type Thing = string;
// this is not @internal (using at character)
export type Thing2 = number;
// this is also not internal (not using at character)
export type Thing3 = boolean;
π Actual behavior
/module.d.ts
export declare type Thing3 = boolean;
π Expected behavior
/module.d.ts
export declare type Thing2 = number;
export declare type Thing3 = boolean;
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptEffort: CasualGood issue if you're already used to contributing to the codebase. Harder than "good first issue".Good issue if you're already used to contributing to the codebase. Harder than "good first issue".Experimentation NeededSomeone needs to try this out to see what happensSomeone needs to try this out to see what happensHelp WantedYou can do thisYou can do this