0.1.1 #8

Merged
Thilawyn merged 6 commits from next into master 2024-01-07 22:49:30 +01:00
Showing only changes of commit 5bd2c735a8 - Show all commits

View File

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