From 5eef85727e314b93763b10fc8af9caecee63408a Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Sun, 2 Feb 2025 15:51:05 +0100 Subject: [PATCH] Additional link data typings --- src/content/links.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/content/links.tsx b/src/content/links.tsx index 9838f61..c432367 100644 --- a/src/content/links.tsx +++ b/src/content/links.tsx @@ -5,7 +5,10 @@ import type { Page } from "../types.js"; interface LinkData { title: string, url: string, + altUrls?: string[], tags: string[], + via?: string, + related?: string, description?: string, read?: string, author?: string,