import type { Category } from './Category'; import type { PackageId } from './PackageId'; import type { PackageInfo } from './PackageInfo'; export type PackageIndex = { categories: { [key: string]: Category; }; packages: { [key: PackageId]: PackageInfo; }; };