/** * Augment the typings of Vue.js */ import Vue = require('vue'); import * as VueLogger from '../../index'; import { PluginFunction } from "vue"; export const install: PluginFunction<{}>; export interface Log { debug(...args: any[]): void; info(...args: any[]): void; warn(...args: any[]): void; error(...args: any[]): void; fatal(...args: any[]): void; } declare module 'vue/types/vue' { interface Vue { $log: Log; } } export default VueLogger;