TypeScript/tests/projects/transitiveReferences/c.ts

4 lines
57 B
TypeScript

import {b} from './b';
import {X} from "@ref/a";
b;
X;