tannerntannern / ts-mixer

A small TypeScript library that provides tolerable Mixin functionality.
MIT License
379 stars 27 forks source link

Invalid type error for protected constructor #63

Open btxtiger opened 1 year ago

btxtiger commented 1 year ago

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();
   }
}

image