From c8d37b3bc1844a982f42c8736bf9957ca4409252 Mon Sep 17 00:00:00 2001 From: Adam Gerthel Date: Tue, 20 May 2025 08:59:31 +0200 Subject: [PATCH 1/2] feat: export MarkedStyles --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index fadf6104..d92ac0b1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,11 +8,13 @@ import type { ParserOptions, RendererInterface, } from "./lib/types"; +import type { MarkedStyles } from "./theme/types"; const MarkedLexer = marked.lexer; export type { MarkdownProps, + MarkedStyles, ParserOptions, RendererInterface, useMarkdownHookOptions, From a8e3e1aeb26851415b2053026547b86e374e73c6 Mon Sep 17 00:00:00 2001 From: Adam Gerthel Date: Tue, 20 May 2025 09:20:26 +0200 Subject: [PATCH 2/2] style: use tabs instead of spaces --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index d92ac0b1..60e87fa3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,7 +14,7 @@ const MarkedLexer = marked.lexer; export type { MarkdownProps, - MarkedStyles, + MarkedStyles, ParserOptions, RendererInterface, useMarkdownHookOptions,