6 lines
180 B
TypeScript
6 lines
180 B
TypeScript
import type { PackageDataEntry } from './PackageDataEntry';
|
|
import type { PackageId } from './PackageId';
|
|
export type AllPackageData = {
|
|
[key: PackageId]: PackageDataEntry;
|
|
};
|