template-project/node_modules/pkg-fetch/lib-es5/places.d.ts
2025-05-30 18:13:30 +08:00

19 lines
577 B
TypeScript

export declare const cachePath: string;
interface PlaceOptions {
version: string;
nodeVersion: string;
platform: string;
arch: string;
}
interface LocalPlaceOptions extends PlaceOptions {
from: string;
output?: string;
}
export declare function localPlace({ from, output, version, nodeVersion, platform, arch, }: LocalPlaceOptions): string;
export interface Remote {
tag: string;
name: string;
}
export declare function remotePlace({ version, nodeVersion, platform, arch, }: PlaceOptions): Remote;
export {};
//# sourceMappingURL=places.d.ts.map