@daks.dev/svelte.sdk
Version:
DAKS.DEV Svelte SDK
10 lines (9 loc) • 342 B
TypeScript
import type { NavBrand } from './index.d.ts';
import type { SvelteHTMLElements } from 'svelte/elements';
type Props = Omit<SvelteHTMLElements['a'], 'class'> & {
class?: ClassName;
brand?: NavBrand;
};
declare const NavHome: import("svelte").Component<Props, {}, "">;
type NavHome = ReturnType<typeof NavHome>;
export default NavHome;