Skip to content

Commit 4361a7b

Browse files
authored
Add missing "default" to the type definition
1 parent b8acf1f commit 4361a7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import { IAsyncComputedValue } from 'vue-async-computed';
22
import { VueDecorator } from 'vue-class-component';
33

4-
export function AsyncComputed<T>(computedOptions?: IAsyncComputedValue<T>): VueDecorator;
4+
export default function AsyncComputed<T>(computedOptions?: IAsyncComputedValue<T>): VueDecorator;

0 commit comments

Comments
 (0)