If I create an abstract class, with an explicitly protected constructor, I'm getting a type error, though a protected constructor is the default for abstract classes (afaik)
export abstract class UrlFilterHandler {
protected constructor() {
// this.init();
}
}

If I create an abstract class, with an explicitly protected constructor, I'm getting a type error, though a protected constructor is the default for abstract classes (afaik)