interface Interface {
method(): void;
}
export class Class implements Interface {
property = "yadda"
/*$*/
}
Expected: We should auto-complete method and class member keywords - and then possibly the usual value completions one would get at the top level scope.
Actual: Usual value completions at the top-level!
