Files
2026-03-03 23:49:13 +01:00

8 lines
308 B
TypeScript

export interface FormatHtmlOptions {
html: string;
keepStyles?: boolean;
maxAttrLen?: number;
maxContentLen?: number;
}
export declare function formatHtmlForPrompt({ html, keepStyles, maxAttrLen, maxContentLen, }: FormatHtmlOptions): Promise<string>;
//# sourceMappingURL=htmlrewrite.d.ts.map