Skip to content

Commit

Permalink
Fix according to Deno 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fakoua committed Sep 16, 2020
1 parent d973f19 commit c5b19e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/Config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CancelToken } from "../cancel/CancelToken.ts";
import type { CancelToken } from "../cancel/CancelToken.ts";

export interface Config {
baseURL?: string,
Expand Down
2 changes: 1 addition & 1 deletion src/core/Soxa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { buildURL } from "../helpers/buildURL.ts"
import { InterceptorManager } from "./InterceptorManager.ts"
import { dispatchRequest } from "./dispatchRequest.ts"
import { mergeConfig } from "./mergeConfig.ts"
import { Config } from "./Config.ts"
import type { Config } from "./Config.ts"

export class Soxa {
defaults: any
Expand Down

0 comments on commit c5b19e5

Please sign in to comment.