Files
openclaw/src/types/create-markdown-preview.d.ts
2026-03-24 10:07:14 -07:00

8 lines
235 B
TypeScript

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