action-ansible-playbook/node_modules/@actions/core/lib/command.d.ts

16 lines
412 B
TypeScript
Raw Normal View History

2022-10-21 08:44:44 -06:00
export interface CommandProperties {
2020-08-30 04:05:39 -06:00
[key: string]: any;
2020-05-01 12:11:28 -06: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 04:05:39 -06:00
export declare function issueCommand(command: string, properties: CommandProperties, message: any): void;
2020-05-01 12:11:28 -06:00
export declare function issue(name: string, message?: string): void;