The folding action is not triggered for Typescript functions with a return type that is on a separate line. Example: ```typescript function test() : string { return ""; } ``` But this works: ```typescript function test(): string { return ""; } ```