mirror of
https://github.com/DeterminateSystems/magic-nix-cache-action.git
synced 2024-12-23 13:32:03 +01:00
15 lines
457 B
TypeScript
Generated
15 lines
457 B
TypeScript
Generated
/// <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;
|
|
}>;
|