setup-php/node_modules/@actions/core/lib/command.d.ts
Shivam Mathur 8f9786b73f init
2019-09-06 05:17:43 +05:30

17 lines
455 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 {};