From 2b0ae426c87f81b553c4cb31428795584b4160d7 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Sun, 5 Jan 2025 22:27:44 -0800 Subject: [PATCH] Refactor markdown-remark integration to update import paths --- packages/markdown-remark/v.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/markdown-remark/v.d.ts b/packages/markdown-remark/v.d.ts index ea552fc..e39b685 100644 --- a/packages/markdown-remark/v.d.ts +++ b/packages/markdown-remark/v.d.ts @@ -1,6 +1,6 @@ declare module 'studiocms:markdown-remark' { - export const Markdown: typeof import('../../../src/integration/markdown').Markdown; - export const render: typeof import('../../../src/integration/markdown').render; + export const Markdown: typeof import('./src/integration/markdown.js').Markdown; + export const render: typeof import('./src/integration/markdown.js').render; } declare module 'studiocms:markdown-remark/user-components' {