From c187d367ffa1e5a132c749e9e0682ba822d8b2f4 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Mon, 15 Jan 2024 16:05:39 +0100 Subject: [PATCH] types(Link): add missing props --- src/runtime/types/link.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/runtime/types/link.d.ts b/src/runtime/types/link.d.ts index 535a58a3..d39f5f2a 100644 --- a/src/runtime/types/link.d.ts +++ b/src/runtime/types/link.d.ts @@ -1,6 +1,9 @@ import type { NuxtLinkProps } from '#app' export interface Link extends NuxtLinkProps { + as?: string + type?: string + disabled?: boolean active?: boolean exact?: boolean exactQuery?: boolean