summaryrefslogtreecommitdiff
path: root/tests/testdata/subdir/export_types.ts
blob: 18c8ed8810f7aa559efdeb184ee956d151e40034 (plain)
1
2
3
4
5
6
7
8
9
10
11
export interface A {
  a: string;
}

export class B implements A {
  a = "a";
}

export function create(): B {
  return new B();
}