mirror of
https://github.com/actions/setup-node.git
synced 2025-04-24 20:22:13 +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[];
|
||
|
}
|