12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
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;
|
|
};
|
|
};
|