summaryrefslogtreecommitdiff
path: root/.github/actions/msvc-dev-cmd/node_modules/@actions/core/lib/command.d.ts
blob: 89eff6687acbe63ddedbd72fc01b3b520e526e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
export {};