revert to ts-rs v9

This commit is contained in:
Aiden McClelland
2025-08-16 22:33:53 -06:00
parent d06c443c7d
commit f7f0b7dc1a
26 changed files with 241 additions and 241 deletions

View File

@@ -4,6 +4,6 @@ import type { Version } from "./Version"
export type GetPackageResponseFull = {
categories: string[]
best: { [key in Version]?: PackageVersionInfo }
otherVersions: { [key in Version]?: PackageVersionInfo }
best: { [key: Version]: PackageVersionInfo }
otherVersions: { [key: Version]: PackageVersionInfo }
}