From 4361a7b8de10b79186fe43a9a5b5de59c1ce4be1 Mon Sep 17 00:00:00 2001 From: Ryo Ota Date: Sun, 29 Dec 2019 09:28:21 +0900 Subject: [PATCH] Add missing "default" to the type definition --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index a594741..f2b9f73 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1,4 +1,4 @@ import { IAsyncComputedValue } from 'vue-async-computed'; import { VueDecorator } from 'vue-class-component'; -export function AsyncComputed(computedOptions?: IAsyncComputedValue): VueDecorator; +export default function AsyncComputed(computedOptions?: IAsyncComputedValue): VueDecorator;