mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-29 02:41:07 +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;
|
|
}
|