Is it possible just by doing something like that:
If I type f.name.a.b {{tab press}}
=> WebStorm will produce
function fname(a, b)
{
}
or in case of typescript if I type
c.Name.a.string {{tab press}}
=> it will produce:
class Name {
a: string;
}
Is it possible to achieve something like that in WebStorm?