rewrite in javascript

This commit is contained in:
Dawid Dziurla
2020-05-01 20:11:28 +02:00
parent 47f48fd0e8
commit fd56a2ad58
37 changed files with 2298 additions and 120 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 {};