rewrite in javascript

This commit is contained in:
Dawid Dziurla 2020-03-26 10:34:31 +01:00
parent b27c1f0ddb
commit 9feac88483
No known key found for this signature in database
GPG key ID: 7B6D8368172E9B0B
43 changed files with 2589 additions and 73 deletions

16
node_modules/@actions/core/lib/command.d.ts generated vendored Normal file
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 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 {};