From f9dbe289380bb7b7b4f0fe0fef85dcf262910afd Mon Sep 17 00:00:00 2001 From: Sylvain Marroufin Date: Mon, 25 Jul 2022 18:45:37 +0200 Subject: [PATCH] chore(typescript): fix typed imports (#72) --- src/runtime/plugins/toast.client.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/plugins/toast.client.ts b/src/runtime/plugins/toast.client.ts index da9108a1..8022d867 100644 --- a/src/runtime/plugins/toast.client.ts +++ b/src/runtime/plugins/toast.client.ts @@ -1,6 +1,6 @@ -import { Ref } from 'vue' +import type { Ref } from 'vue' import { defineNuxtPlugin, useState } from '#app' -import { ToastNotification } from '../types' +import type { ToastNotification } from '../types' export default defineNuxtPlugin(() => { const notifications: Ref = useState('notifications', () => [])