Fix imports in main.ts

This commit is contained in:
Michal Dorner 2021-01-16 23:11:52 +01:00
parent 6f3367ef61
commit 6e20ef250b
No known key found for this signature in database
GPG key ID: 9EEE04B48DA36786
3 changed files with 41 additions and 22 deletions

View file

@ -1,6 +1,6 @@
import core from '@actions/core'
import github from '@actions/github'
import fs from 'fs'
import * as core from '@actions/core'
import * as github from '@actions/github'
import * as fs from 'fs'
import glob from 'fast-glob'
import {parseDartJson} from './parsers/dart-json/dart-json-parser'
import {parseDotnetTrx} from './parsers/dotnet-trx/dotnet-trx-parser'