1
0
Files
setup-maven/node_modules/@actions/core/lib/command.d.ts
T

16 lines
412 B
TypeScript
Raw Normal View History

2022-10-10 11:17:09 +02:00
export interface CommandProperties {
2020-11-19 16:36:25 +01:00
[key: string]: any;
2019-12-07 16:09:20 +03:00
}
/**
* Commands
*
* Command Format:
2020-11-19 16:36:25 +01:00
* ::name key=value,key=value::message
2019-12-07 16:09:20 +03:00
*
* Examples:
2020-11-19 16:36:25 +01:00
* ::warning::This is the message
* ::set-env name=MY_VAR::some value
2019-12-07 16:09:20 +03:00
*/
2020-11-19 16:36:25 +01:00
export declare function issueCommand(command: string, properties: CommandProperties, message: any): void;
2019-12-07 16:09:20 +03:00
export declare function issue(name: string, message?: string): void;