Adding the rest back in.
Some checks failed
Auto Maintenance Cycle / pre-commit Autoupdate (push) Failing after 34s

This commit is contained in:
2023-11-19 03:47:39 +01:00
parent 6e037d6837
commit ff32b18cc4
223 changed files with 34973 additions and 0 deletions

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