summaryrefslogtreecommitdiff
path: root/.github/actions/msvc-dev-cmd/node_modules/@actions/core/lib/command.d.ts
diff options
context:
space:
mode:
authorScott Talbert <swt@techie.net>2022-03-09 19:45:20 -0500
committerScott Talbert <swt@techie.net>2022-03-13 10:15:04 -0400
commit61bde2dd0953c0610110b3e0669073e446294cd4 (patch)
treeeca6bd589784fe94e3bd6ebbfdf4d989d624888d /.github/actions/msvc-dev-cmd/node_modules/@actions/core/lib/command.d.ts
parent7ef45e82dc3c9a8980753241996a8cfed4e4a8c5 (diff)
downloadpycurl-61bde2dd0953c0610110b3e0669073e446294cd4.tar.gz
Revert "Temporarily add copy of ilammy/msvc-dev-cmd"
This reverts commit b24cdaa4e676f2385c20ab264b275dcdfbd0238b.
Diffstat (limited to '.github/actions/msvc-dev-cmd/node_modules/@actions/core/lib/command.d.ts')
-rw-r--r--.github/actions/msvc-dev-cmd/node_modules/@actions/core/lib/command.d.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/.github/actions/msvc-dev-cmd/node_modules/@actions/core/lib/command.d.ts b/.github/actions/msvc-dev-cmd/node_modules/@actions/core/lib/command.d.ts
deleted file mode 100644
index 89eff66..0000000
--- a/.github/actions/msvc-dev-cmd/node_modules/@actions/core/lib/command.d.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-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 {};