6 lines
200 B
TypeScript
6 lines
200 B
TypeScript
import type { CurrentDependencyInfo } from './CurrentDependencyInfo';
|
|
import type { PackageId } from './PackageId';
|
|
export type CurrentDependencies = {
|
|
[key: PackageId]: CurrentDependencyInfo;
|
|
};
|