Remove type descriptors

Whoops! This isn't typescript
This commit is contained in:
Brooks Swinnerton
2021-07-30 13:39:29 -04:00
parent d82d4c8f2c
commit 036e50818a

View File

@@ -83,10 +83,10 @@ async function main() {
const execOptions = {}; const execOptions = {};
execOptions.listeners = { execOptions.listeners = {
stdout: (data: Buffer) => { stdout: function(data) {
core.setOutput('stdout', data.toString()); core.setOutput('stdout', data.toString());
}, },
stderr: (data: Buffer) => { stderr: function(data) {
core.setOutput('stderr', data.toString()); core.setOutput('stderr', data.toString());
} }
}; };