Added node module dependencies into version control
Test / test (push) Failing after 9s

This commit is contained in:
2023-07-27 20:18:19 +02:00
parent 4af7ecf55f
commit 9710f9c8a2
366 changed files with 95223 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
export interface CommandProperties {
[key: string]: any;
}
/**
* 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: any): void;
export declare function issue(name: string, message?: string): void;