mirror of
https://git.mirrors.martin98.com/https://github.com/cyberman54/curl
synced 2025-11-19 06:21:04 +08:00
17 lines
422 B
TypeScript
17 lines
422 B
TypeScript
interface CommandProperties {
|
|
[key: string]: string;
|
|
}
|
|
/**
|
|
* Commands
|
|
*
|
|
* Command Format:
|
|
* ::name key=value,key=value::message
|
|
*
|
|
* Examples:
|
|
* ::warning::This is the message
|
|
* ::set-env name=MY_VAR::some value
|
|
*/
|
|
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
|
|
export declare function issue(name: string, message?: string): void;
|
|
export {};
|