summaryrefslogtreecommitdiff
path: root/cli/tests/subdir/redirects/a.ts
blob: 071ee4728ecfa3fcc2565717ee6670b82e387f3e (plain)
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();
}