Closed timocov closed 9 months ago
Bug report
Input code
// input.ts import { Foo } from './foo'; const Foo = 2; export { Foo }; // foo.ts export interface Foo {}
Expected output
export interface Foo { } export declare const Foo = 2; export {};
Actual output
interface Foo { } export declare const Foo = 2; export {};
Additional context exportReferencedTypes should be disabled
exportReferencedTypes
Bug report
Input code
Expected output
Actual output
Additional context
exportReferencedTypes
should be disabled