Saxonberg Server API
    Preparing search index...

    Type Alias MixinConstructor<T>

    MixinConstructor:
        | (new (...args: any[]) => T)
        | (abstract new (...args: any[]) => T)

    Mixin constructor type. A mixin is a function that takes a base class and returns an extended class. Supports both concrete and abstract constructors.

    Type Parameters

    • T = object