action-debian-package/node_modules/@actions/core/lib/command.d.ts

17 lines
416 B
TypeScript
Raw Normal View History

2020-03-26 09:34:31 +00:00
interface CommandProperties {
2020-07-25 10:21:44 +00:00
[key: string]: any;
2020-03-26 09:34:31 +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-07-25 10:21:44 +00:00
export declare function issueCommand(command: string, properties: CommandProperties, message: any): void;
2020-03-26 09:34:31 +00:00
export declare function issue(name: string, message?: string): void;
export {};