mirror of
https://github.com/actions/setup-node.git
synced 2025-04-05 11:35:03 +08: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[];
|
|
}
|