Is there currently a way to specify the naming convention of a instance property that is assigned a function? example ```TypeScript class Blah { // need underscore private _testVat = 0; // don't want underscore private test = (): void => { }; } ```
Is there currently a way to specify the naming convention of a instance property that is assigned a function?
example