better-svelte-email
Version:
Svelte email renderer with Tailwind support
10 lines (9 loc) • 303 B
TypeScript
import type { HTMLAnchorAttributes } from 'svelte/elements';
type $$ComponentProps = {
href: string;
target?: string;
children: any;
} & HTMLAnchorAttributes;
declare const Link: import("svelte").Component<$$ComponentProps, {}, "">;
type Link = ReturnType<typeof Link>;
export default Link;