mirror of
https://github.com/actions/setup-node
synced 2025-02-05 18:41:02 +00:00
20 lines
329 B
TypeScript
20 lines
329 B
TypeScript
export interface NodeInputs {
|
|
versionSpec: string;
|
|
arch: string;
|
|
auth?: string;
|
|
checkLatest: boolean;
|
|
stable: boolean;
|
|
}
|
|
|
|
export interface INodeVersionInfo {
|
|
downloadUrl: string;
|
|
resolvedVersion: string;
|
|
arch: string;
|
|
fileName: string;
|
|
}
|
|
|
|
export interface INodeVersion {
|
|
version: string;
|
|
files: string[];
|
|
}
|