initial javascript rewrite

This commit is contained in:
Dawid Dziurla
2020-02-29 23:01:03 +01:00
parent f16ced8d0e
commit fa231fb236
53 changed files with 14218 additions and 14 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 {};