svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
26 lines (25 loc) • 655 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
currentUrl: URL;
path?: string;
text?: string;
icon?: string | null;
};
events: {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
avatar: {};
default: {};
};
};
export type NavItemProps = typeof __propDef.props;
export type NavItemEvents = typeof __propDef.events;
export type NavItemSlots = typeof __propDef.slots;
export default class NavItem extends SvelteComponentTyped<NavItemProps, NavItemEvents, NavItemSlots> {
}
export {};