Shohei Ueda 6f6a564fad
Deps: update (#53)
* deps: update

* deps: update node_modules
2019-10-02 10:58:52 +09:00

17 lines
455 B
TypeScript

interface CommandProperties {
[key: string]: string;
}
/**
* Commands
*
* Command Format:
* ##[name key=value;key=value]message
*
* Examples:
* ##[warning]This is the user warning message
* ##[set-secret name=mypassword]definitelyNotAPassword!
*/
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
export declare function issue(name: string, message?: string): void;
export {};