UNPKG

better-svelte-email

Version:

Svelte email renderer with Tailwind support

8 lines (7 loc) 270 B
import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = { children?: any; } & HTMLAttributes<HTMLBodyElement>; declare const Body: import("svelte").Component<$$ComponentProps, {}, "">; type Body = ReturnType<typeof Body>; export default Body;