fix: number parsing regression (#5906)

This commit is contained in:
Calum H.
2026-04-24 19:39:30 +01:00
committed by GitHub
parent e3d6a498d0
commit faf593b2af
3 changed files with 58 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
export type Override<T, R> = Omit<T, keyof R> & R
export type RawDecimal = string | number