mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-29 04:00:09 +00:00
4 lines
163 B
TypeScript
4 lines
163 B
TypeScript
declare function escapeHtml(unsafe: string): string;
|
|
declare function html(strings: TemplateStringsArray, ...values: any[]): string;
|
|
|
|
export { escapeHtml, html };
|