mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-14 14:58:56 +00:00
7 lines
235 B
TypeScript
7 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;
|
|
}
|