1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2024-11-23 17:17:38 +00:00
action-ansible-playbook/node_modules/@actions/core/lib/command.d.ts

17 lines
416 B
TypeScript
Raw Normal View History

2020-05-01 18:11:28 +00:00
interface CommandProperties {
2020-08-30 10:05:39 +00:00
[key: string]: any;
2020-05-01 18:11:28 +00:00
}
/**
* Commands
*
* Command Format:
* ::name key=value,key=value::message
*
* Examples:
* ::warning::This is the message
* ::set-env name=MY_VAR::some value
*/
2020-08-30 10:05:39 +00:00
export declare function issueCommand(command: string, properties: CommandProperties, message: any): void;
2020-05-01 18:11:28 +00:00
export declare function issue(name: string, message?: string): void;
export {};