export interface QfNotifyOptions { view?: any, viewData: any, duration?: number, cover?: boolean, onClose?: Function, position?: string } export interface QfNotify { (options: QfNotifyOptions): void } declare module 'vue/types/vue' { interface Vue { $notify: QfNotify } }