ghaction-upx/node_modules/@actions/core/lib/command.d.ts

17 lines
422 B
TypeScript
Raw Normal View History

2020-01-17 01:46:30 -07:00
interface CommandProperties {
[key: string]: string;
}
/**
* Commands
*
* Command Format:
2020-01-24 02:26:43 -07:00
* ::name key=value,key=value::message
2020-01-17 01:46:30 -07:00
*
* Examples:
2020-01-24 02:26:43 -07:00
* ::warning::This is the message
* ::set-env name=MY_VAR::some value
2020-01-17 01:46:30 -07:00
*/
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
export declare function issue(name: string, message?: string): void;
export {};