fix: typescript error (any) from models (#347)

This commit is contained in:
GitMurf
2025-06-23 15:44:57 -07:00
committed by GitHub
parent f19c6b05f2
commit 0dc586faef

View File

@@ -57,7 +57,7 @@ export namespace ModelsDev {
}
refresh()
const json = await data()
return JSON.parse(json)
return JSON.parse(json) as Record<string, Provider>
}
async function refresh() {