update inputs and variables

This commit is contained in:
Bryan MacFarlane
2019-05-17 10:23:01 -04:00
parent d7423efd98
commit a97380e90d
3 changed files with 38 additions and 15 deletions
+4 -4
View File
@@ -19,9 +19,9 @@ export enum ExitCode {
}
/**
* Interface for exportVariable options
* Interface for getInput options
*/
export interface ExportOptions {
/** Optional. Whether the variable should be marked as secret (will be masked from logs). Defaults to false */
isSecret?: boolean;
export interface InputOptions {
/** Optional. Whether the input is required. If required and not present, will throw. Defaults to false */
required?: boolean;
}