mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
298 B
14 lines
298 B
import { A } from './A';
|
|
import { B } from './B';
|
|
import { C } from './C';
|
|
import { D } from './D';
|
|
|
|
export var a1 = new A();
|
|
export var b1 = new B();
|
|
export var c1 = new C();
|
|
export var d1 = new D();
|
|
|
|
export var a2 = b1.a();
|
|
export var b2 = a1.b();
|
|
export var c2 = d1.c();
|
|
export var d2 = c1.d();
|
|
|