send-mail/node_modules/@actions/core/lib/command.d.ts

16 lines
412 B
TypeScript
Raw Normal View History

2022-10-21 21:52:45 +07:00
export interface CommandProperties {
2020-07-09 20:48:05 +07:00
[key: string]: any;
2020-03-01 05:01:03 +07: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-09 20:48:05 +07:00
export declare function issueCommand(command: string, properties: CommandProperties, message: any): void;
2020-03-01 05:01:03 +07:00
export declare function issue(name: string, message?: string): void;