Is it possible to create detailed custom user snippets in VS Code for TypeScript functions such as:
someArray.forEach((val: getTypeFromArrayOnTheFly){
}
I was able to create a simple snippet, but I am unsure how to make it appear after typing an array name followed by a dot. Additionally, I am unsure how to extract the type from the specific array I want to use the snippet on.