chore(plugins): remove types imports

This commit is contained in:
Benjamin Canac
2022-07-21 23:37:05 +02:00
parent 6b813bd3b3
commit db2b73e741
2 changed files with 1 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
import { useClipboard } from '@vueuse/core'
import { defineNuxtPlugin } from '#app'
import { ClipboardPlugin } from '../types'
export default defineNuxtPlugin((nuxtApp) => {
const { copy: copyToClipboard, isSupported } = useClipboard()

View File

@@ -1,6 +1,6 @@
import { Ref } from 'vue'
import { defineNuxtPlugin, useState } from '#app'
import { ToastNotification, ToastPlugin } from '../types'
import { ToastNotification } from '../types'
export default defineNuxtPlugin(() => {
const notifications: Ref<ToastNotification[]> = useState('notifications', () => [])