Bowen Ni
Results
2
comments of
Bowen Ni
Yes `this.p_` is indeed `any`. But we can refer the type from the constructor parameters. Since `constructor(p: boolean)` and `this.p_ = p` we can guess that `this.p_` is also a...
Adding a `@const` makes it `private readonly p_: any;`. The type is still `any`, I think.