From c215445e8346b13d1d79c625cff39d7d00fba538 Mon Sep 17 00:00:00 2001 From: Keegan Farley Date: Mon, 23 Jul 2018 17:12:19 -0700 Subject: [PATCH] Updated typings to include default export --- types/index.d.ts | 2 +- types/test/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index 6e3e75c..cc50ecd 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -31,4 +31,4 @@ declare module "vue/types/vue" { } } -export declare function install(V: typeof Vue): void +export default function VueRx(V: typeof Vue): void diff --git a/types/test/index.ts b/types/test/index.ts index 0b85359..9ce6cf3 100644 --- a/types/test/index.ts +++ b/types/test/index.ts @@ -1,5 +1,5 @@ import Vue from 'vue' -import * as VueRX from '../index' +import VueRX from '../index' import { interval }from 'rxjs' import { pluck, map } from 'rxjs/operators'