Interface Static<T>

interface Static<T> {
    new Staticnew (): Instance<T>;
    [metadata]: Record<PropertyKey, unknown> & object & {
        [metadata]: T;
    };
    prototype: Instance<T>;
}

Type Parameters

Constructors

Properties

Constructors

Properties

[metadata]: Record<PropertyKey, unknown> & object & {
    [metadata]: T;
}
prototype: Instance<T>