Skip to content

API Reference / @gtkx/runtime / StaticBase

Type Alias: StaticBase<C, K>

StaticBase<C, K> = Omit<C, K> & C extends (...args) => infer R ? (...args) => R : never

Defined in: runtime/dist/registry.d.ts:9

Static side of class C with its construct signature preserved but the member named K (default "new") removed.

Type Parameters

C

C

K

K extends PropertyKey = "new"

Released under the MPL-2.0 License.