UNPKG

537 BTypeScriptView Raw
1interface PlaceOptions {
2 version: string;
3 nodeVersion: string;
4 platform: string;
5 arch: string;
6}
7interface LocalPlaceOptions extends PlaceOptions {
8 from: string;
9 output?: string;
10}
11export declare function localPlace({ from, output, version, nodeVersion, platform, arch, }: LocalPlaceOptions): string;
12export interface Remote {
13 tag: string;
14 name: string;
15}
16export declare function remotePlace({ version, nodeVersion, platform, arch, }: PlaceOptions): Remote;
17export {};
18//# sourceMappingURL=places.d.ts.map
\No newline at end of file