Set StaticMembers as internal
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Julien Valverdé
2024-01-07 22:18:16 +01:00
parent ead4844145
commit 5bd2c735a8

View File

@@ -5,7 +5,7 @@ import { AbstractClass, AbstractConstructor, Opaque, UnionToIntersection } from
* Represents the static members of a class. * Represents the static members of a class.
* @template C - The class type. * @template C - The class type.
*/ */
export type StaticMembers<C> = { type StaticMembers<C> = {
[Key in keyof C as Key extends "prototype" ? never : Key]: C[Key] [Key in keyof C as Key extends "prototype" ? never : Key]: C[Key]
} }