Fix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Julien Valverdé
2024-02-03 02:21:04 +01:00
parent c1097ff2f2
commit c044051813

View File

@@ -5,8 +5,6 @@ export type AbstractTag = "@thilawyn/traitify-ts/Abstract"
export function abstract<
Abstract extends {} = {}
>(): (
Opaque<Abstract, AbstractTag>
) {
>(): Opaque<Abstract, AbstractTag> {
return undefined as any
}