Merge pull request #1165 from zmwangx/config-fix-ts
Fix plugin type in config/PrimeVue.d.tspull/1088/head
commit
2684f075f3
|
@ -1,4 +1,4 @@
|
||||||
import Vue, { PluginFunction } from 'vue';
|
import Vue, { Plugin } from 'vue';
|
||||||
|
|
||||||
interface PrimeVueConfiguration {
|
interface PrimeVueConfiguration {
|
||||||
ripple?: boolean;
|
ripple?: boolean;
|
||||||
|
@ -51,7 +51,8 @@ interface PrimeVueLocaleOptions {
|
||||||
|
|
||||||
export declare function usePrimeVue(): PrimeVueConfiguration;
|
export declare function usePrimeVue(): PrimeVueConfiguration;
|
||||||
|
|
||||||
export const install: PluginFunction<{}>;
|
declare const plugin: Plugin;
|
||||||
|
export default plugin;
|
||||||
|
|
||||||
declare module 'vue/types/vue' {
|
declare module 'vue/types/vue' {
|
||||||
interface Vue {
|
interface Vue {
|
||||||
|
|
Loading…
Reference in New Issue