Checkpoint move state into meta query

This commit is contained in:
Eric Bailey
2025-06-04 10:57:38 -05:00
parent 11001172b3
commit ce776fd050
10 changed files with 227 additions and 163 deletions
+5
View File
@@ -0,0 +1,5 @@
export type Literal<T, A = string> = T extends A
? string extends T
? never
: T
: never