github.com/jfrog/frogbot@v1.1.1-0.20231221090046-821a26f50338/action/node_modules/@actions/core/lib/command.d.ts (about) 1 export interface CommandProperties { 2 [key: string]: any; 3 } 4 /** 5 * Commands 6 * 7 * Command Format: 8 * ::name key=value,key=value::message 9 * 10 * Examples: 11 * ::warning::This is the message 12 * ::set-env name=MY_VAR::some value 13 */ 14 export declare function issueCommand(command: string, properties: CommandProperties, message: any): void; 15 export declare function issue(name: string, message?: string): void;