1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-node synced 2025-06-18 17:40:26 +02:00
This commit is contained in:
Bryan MacFarlane 2019-05-31 00:29:40 -04:00
parent 47177e86fd
commit eac926003b
192 changed files with 14120 additions and 8 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 user warning message
* ##[set-secret name=mypassword]definatelyNotAPassword!
*/
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
export declare function issue(name: string, message: string): void;
export {};