blob: bfb0483c2867457225e8fd199d31a5a4ba13820c (
plain)
1
2
3
4
5
6
7
8
9
10
|
// intentional type checking errors
export class Class1 extends Class2 {
}
export class Class2 extends Class1 {
}
// these should be fine though
export { subDir } from "./sub_dir";
export { otherDir } from "./other_dir";
|