import { CreatePhoneLead } from './ui/plugins/callMe/callMe' import { IsWorkTime } from './domain/is-work-time/is-work-time' // https://vuejs.org/v2/guide/typescript.html#Augmenting-Types-for-Use-with-Plugins declare module 'vue/types/vue' { interface Vue { $isWorkTime: Promise $createPhoneLead: (c: CreatePhoneLead) => Promise } }