This commit is contained in:
Chris Wanstrath 2026-01-07 16:54:57 -08:00
parent 82a13a3768
commit 8f68d2c9c3

8
src/lib/html-formatter.d.ts vendored Normal file
View File

@ -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;