# Bug Report <!-- Please fill in each section completely. Thank you! --> ### 馃攷 Search Terms - Method signature completions - suggest / suggestions - completions ### 馃晽 Version & Regression Information 4.5.0-dev.20211029 ### 馃捇 Code For the code: ```ts interface IFoo { bar(x: number): void; } const obj: IFoo = { | } ``` Trigger suggestions inside the object literal ### 馃檨 Actual behavior We get a suggestion for `bar` but accepting it only completes `bar` ### 馃檪 Expected behavior Accepting the completion for `bar` should also insert the method signature: ```ts interface IFoo { bar(x: number): void; } const obj: IFoo = { bar(x: number): void { } } ```