Adding node_modules

This commit is contained in:
Deepak Sattiraju
2019-09-23 15:17:37 +05:30
parent 8d56cba217
commit 8f53944957
312 changed files with 47895 additions and 0 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 {};