openclaw/src/types/create-markdown-preview.d.ts

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;
}