TypeScript/tests/projects/transitiveReferences/c.ts

4 lines
57 B
TypeScript
Raw Normal View History

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