5 lines
123 B
TypeScript
5 lines
123 B
TypeScript
import type { PackageId } from './PackageId';
|
|
export type CheckDependenciesParam = {
|
|
packageIds?: Array<PackageId>;
|
|
};
|