diff options
Diffstat (limited to 'tests/testdata/npm/registry/@denotest/check-error/1.0.0/index.d.ts')
-rw-r--r-- | tests/testdata/npm/registry/@denotest/check-error/1.0.0/index.d.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/testdata/npm/registry/@denotest/check-error/1.0.0/index.d.ts b/tests/testdata/npm/registry/@denotest/check-error/1.0.0/index.d.ts new file mode 100644 index 000000000..bfb0483c2 --- /dev/null +++ b/tests/testdata/npm/registry/@denotest/check-error/1.0.0/index.d.ts @@ -0,0 +1,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"; |