Skip to content

v1.0.1

Latest
Compare
Choose a tag to compare
@Emyrk Emyrk released this 29 Jan 03:01
· 2 commits to main since this release
7fa0e8e

Changelog

  • cffad1b Added support for unnamed type constraints.
type UnionConstraint[T string | int64] struct {
	Value T
}
export interface UnionConstraint<T extends string | number> {
    readonly Value: T;
}