fix(types): add missing `JSONValue` import (#28)

master
Patrick Weingärtner 2019-04-28 19:09:52 +02:00 committed by Pooya Parsa
parent a39ae671ee
commit 60e3370bd5
1 changed files with 1 additions and 1 deletions

2
types/index.d.ts vendored
View File

@ -1,5 +1,5 @@
import Vue from 'vue'
import { ResponsePromise, Options, BeforeRequestHook, AfterResponseHook, HTTPError } from 'ky'
import { ResponsePromise, Options, BeforeRequestHook, AfterResponseHook, HTTPError, JSONValue } from 'ky'
import './vuex'
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;