fix: stabilize logging config imports

This commit is contained in:
Peter Steinberger
2026-03-24 17:20:44 +00:00
parent a1c91bdb75
commit 398d58fb8a
9 changed files with 98 additions and 45 deletions

View File

@@ -0,0 +1,7 @@
declare module "@create-markdown/preview" {
export type PreviewThemeOptions = {
sanitize?: ((html: string) => string) | undefined;
};
export function applyPreviewTheme(html: string, options?: PreviewThemeOptions): string;
}