msvc-dev-cmd v1.0.0

This commit is contained in:
ilammy
2019-10-02 01:10:16 +03:00
parent 89d8017608
commit 233eac407f
9 changed files with 531 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
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]definitelyNotAPassword!
*/
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
export declare function issue(name: string, message?: string): void;
export {};