Updating node_modules

This commit is contained in:
Chris Raynor 2020-10-03 12:55:40 +01:00
parent 4290eabf33
commit f49e963057
No known key found for this signature in database
GPG key ID: 579A1FBC36FDA261
15 changed files with 192 additions and 51 deletions

View file

@ -1,16 +1,16 @@
interface CommandProperties {
[key: string]: string;
[key: string]: any;
}
/**
* Commands
*
* Command Format:
* ##[name key=value;key=value]message
* ::name key=value,key=value::message
*
* Examples:
* ##[warning]This is the user warning message
* ##[set-secret name=mypassword]definitelyNotAPassword!
* ::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 issueCommand(command: string, properties: CommandProperties, message: any): void;
export declare function issue(name: string, message?: string): void;
export {};