bugflowhelp wanted
Metriche repository
- Star
- (4946 star)
- Metriche merge PR
- (Merge medio 138g 22h) (3 PR mergiate in 30 g)
Descrizione
With the following setup, there is an error in file-b:
file-a.js
export opaque type Foo: string = string;
file-b.js
export type { Foo } from './file-a';
However if the code in file-b.js is written differently (see below), it works fine.
file-b.js
import type { Foo } from './file-a';
export type { Foo };
Hence I think this is a bug.