From 8f68d2c9c3f571303b56b370b9419b3a8a6e1e75 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Wed, 7 Jan 2026 16:54:57 -0800 Subject: [PATCH] defs --- src/lib/html-formatter.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/lib/html-formatter.d.ts diff --git a/src/lib/html-formatter.d.ts b/src/lib/html-formatter.d.ts new file mode 100644 index 0000000..e0f4faa --- /dev/null +++ b/src/lib/html-formatter.d.ts @@ -0,0 +1,8 @@ +// HTML Formatter type declarations + +export function closing(el: string): string; +export function entity(el: string): string; +export function minify(el: string): string; +export function render(el: string, opt?: any): string; + +export default render;