-
Notifications
You must be signed in to change notification settings - Fork 653
Closed
Labels
effort: easyProbably a quick fix. Want to contribute? :-)Probably a quick fix. Want to contribute? :-)enhancementThe issue is asking for a new feature or design changeThe issue is asking for a new feature or design changehelp wantedIf you're looking to contribute, this issue is a good place to start!If you're looking to contribute, this issue is a good place to start!
Description
Lazy types are not being rewired when using dtsRollup.
index.d.ts
export declare const ɵdefineDirective: import("./nested").CssSelector[];nested.d.ts
export const enum SelectorFlags {
NOT = 0b0001
}
export type CssSelector = (string | SelectorFlags)[];output
export declare const ɵdefineDirective: import("./test-nested").CssSelector[];
export { }I'd expect that the lazy type is resolved and appended to the file and the import is removed.
expected output
export const enum SelectorFlags {
NOT = 0b0001
}
export type CssSelector = (string | SelectorFlags)[];
export declare const ɵdefineDirective: CssSelector[];
export { }version: 7.0.11
Haroenv, jsamr, m4rvr, chengcyber, SebDuf and 9 more
Metadata
Metadata
Assignees
Labels
effort: easyProbably a quick fix. Want to contribute? :-)Probably a quick fix. Want to contribute? :-)enhancementThe issue is asking for a new feature or design changeThe issue is asking for a new feature or design changehelp wantedIf you're looking to contribute, this issue is a good place to start!If you're looking to contribute, this issue is a good place to start!