Skip to content

Commit

Permalink
Expected import 'Axios' to match the default export 'axios'.
Browse files Browse the repository at this point in the history
  • Loading branch information
dojineko committed Feb 3, 2021
1 parent a2f9d59 commit 1b979fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vault.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as Crypto from 'crypto'
import * as Path from 'path'
import {Buffer} from 'buffer'
import Axios, {AxiosInstance, AxiosResponse} from 'axios'
import axios, {AxiosInstance, AxiosResponse} from 'axios'

/* tslint:disable:no-require-imports no-var-requires */
const pkgJson = require('../package.json')
Expand Down Expand Up @@ -126,7 +126,7 @@ export class Vault {

public get client(): AxiosInstance {
if (this.pClient === undefined) {
this.pClient = Axios.create({
this.pClient = axios.create({
timeout: Vault.timeout,
baseURL: Vault.address,
headers: {
Expand Down

0 comments on commit 1b979fd

Please sign in to comment.