I've turned on the semicolon
option in tslint and before entering a Git issue, I wanted to know if anybody in the community knows if this is as designed or not. Should the private resolvedCampaign : Campaign
below be throwing a lint error?
///<reference path="../../../../typings/tsd.d.ts" />
class MyClass {
private resolvedCampaign : Campaign
constructor(resolvedCampaign : Campaign) {
this.resolvedCampaign = resolvedCampaign;
}
}