From https://github.com/microsoft/TypeScript/issues/47044 For the code: ```ts class Base { foo() { } } class Sub extends Base { } ``` In TS 6.0 triggering suggestions in `Sub` and selecting `foo` would fill in: ```ts foo(): void { } ``` In Ts-go, we instead just fill in `foo`