Interface Static<T>

interface Static<T extends Metadata = Metadata> {
    new Static(): Instance<T>;
    "[metadata]": Record<PropertyKey, unknown> & object & {
        "[struct_metadata]": T;
    };
    prototype: Instance<T>;
}

Type Parameters

Constructors

Properties

Constructors

Properties

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