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
No known key found for this signature in database
GPG Key ID: 72743B7DE552E25A

View File

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