1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00
ssh-key-action/node_modules/@actions/core/lib/command.d.ts
shimataro 6feada438d
release v1.1.0 (#11)
* * update version
* update CHANGELOG

* * update dependencies

* * update package name
* fix repository URL
2019-09-19 07:23:20 +09:00

16 lines
471 B
TypeScript

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]definitelyNotAPassword!
*/
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
export declare function issue(name: string, message?: string): void;
export {};