1 2 3 4 5 6 7 8 9
import { createA } from "./b.ts"; export class A { private _a = "a"; } export function start(): A { return createA(); }