mirror of
https://github.com/DeterminateSystems/magic-nix-cache-action.git
synced 2024-12-27 09:35:23 +01:00
16 lines
457 B
TypeScript
16 lines
457 B
TypeScript
|
/// <reference types="node" resolution-mode="require"/>
|
||
|
export declare const platform: NodeJS.Platform;
|
||
|
export declare const arch: string;
|
||
|
export declare const isWindows: boolean;
|
||
|
export declare const isMacOS: boolean;
|
||
|
export declare const isLinux: boolean;
|
||
|
export declare function getDetails(): Promise<{
|
||
|
name: string;
|
||
|
platform: string;
|
||
|
arch: string;
|
||
|
version: string;
|
||
|
isWindows: boolean;
|
||
|
isMacOS: boolean;
|
||
|
isLinux: boolean;
|
||
|
}>;
|