mirror of
https://github.com/docker/setup-docker-action.git
synced 2025-12-06 07:48:13 +08:00
12 lines
182 B
TypeScript
12 lines
182 B
TypeScript
import * as core from '@actions/core';
|
|
|
|
export interface Inputs {
|
|
version: string;
|
|
}
|
|
|
|
export function getInputs(): Inputs {
|
|
return {
|
|
version: core.getInput('version')
|
|
};
|
|
}
|