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(); }