-
-
Notifications
You must be signed in to change notification settings - Fork 47
Closed
Description
src/
- foo.ts
- index.ts
foo.ts
type Bar = {
}
export class Foo {
bar: Bar
}index.ts
import { Foo } from './foo'
export class Index {
person: Foo
}output
export declare type Bar = {};
declare class Foo {
bar: Bar;
}
export declare class Index {
person: Foo;
}
export {};There are two issues:
Foois not exported.Baris exported.
why? I am very confused.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels