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

16 lines
412 B
TypeScript
Raw Normal View History

2022-10-10 11:17:09 +02:00
export interface CommandProperties {
[key: string]: any;
2019-12-07 16:09:20 +03:00
}
/**
* Commands
*
* Command Format:
* ::name key=value,key=value::message
2019-12-07 16:09:20 +03:00
*
* Examples:
* ::warning::This is the message
* ::set-env name=MY_VAR::some value
2019-12-07 16:09:20 +03: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;