8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import type { PackageId } from './PackageId';
|
|
import type { Version } from './Version';
|
|
export type RemoveMirrorParams = {
|
|
id: PackageId;
|
|
version: Version;
|
|
url: string;
|
|
};
|