mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-08 15:51:06 +00:00
8 lines
235 B
TypeScript
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;
|
|
}
|