Maybe make Extensible type workable

This commit is contained in:
2025-03-02 09:17:46 -06:00
parent a441563c91
commit 0c5b8b734c
2 changed files with 3 additions and 1 deletions

0
deno/extensible.ts Normal file
View File

View File

@@ -1 +1,3 @@
export interface Extensible {}
type Brand<K, T> = K & { readonly __brand: T };
export type Extensible = Brand<"Extensible", {}>;