mirror of https://github.com/actions/setup-go.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
454 B
TypeScript
17 lines
454 B
TypeScript
interface CommandProperties {
|
|
[key: string]: string;
|
|
}
|
|
/**
|
|
* Commands
|
|
*
|
|
* Command Format:
|
|
* ##[name key=value;key=value]message
|
|
*
|
|
* Examples:
|
|
* ##[warning]This is the user warning message
|
|
* ##[set-secret name=mypassword]definatelyNotAPassword!
|
|
*/
|
|
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
|
|
export declare function issue(name: string, message: string): void;
|
|
export {};
|