Skip to content

Commit c215445

Browse files
committed
Updated typings to include default export
1 parent 81d2dca commit c215445

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ declare module "vue/types/vue" {
3131
}
3232
}
3333

34-
export declare function install(V: typeof Vue): void
34+
export default function VueRx(V: typeof Vue): void

types/test/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Vue from 'vue'
2-
import * as VueRX from '../index'
2+
import VueRX from '../index'
33
import { interval }from 'rxjs'
44
import { pluck, map } from 'rxjs/operators'
55

0 commit comments

Comments
 (0)