mirror of
https://github.com/actions/setup-node.git
synced 2026-04-22 20:44:31 +03:00
e3ce749e20
* feat: support private mirrors * chore: change fallback message with mirrors
22 lines
370 B
TypeScript
22 lines
370 B
TypeScript
export interface NodeInputs {
|
|
versionSpec: string;
|
|
arch: string;
|
|
auth?: string;
|
|
checkLatest: boolean;
|
|
stable: boolean;
|
|
mirror: string;
|
|
mirrorToken: string;
|
|
}
|
|
|
|
export interface INodeVersionInfo {
|
|
downloadUrl: string;
|
|
resolvedVersion: string;
|
|
arch: string;
|
|
fileName: string;
|
|
}
|
|
|
|
export interface INodeVersion {
|
|
version: string;
|
|
files: string[];
|
|
}
|