claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
46 lines • 1.38 kB
TypeScript
export default SidebarItem;
type SidebarItem = SvelteComponent<$$ComponentProps, {
toggle: CustomEvent<any>;
click: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
}, {}> & {
$$bindings?: "" | undefined;
};
declare const SidebarItem: $$__sveltets_2_IsomorphicComponent<{
active?: boolean;
icon?: string;
badge?: string;
hasNested?: boolean;
expanded?: boolean;
className?: string;
children: any;
}, {
toggle: CustomEvent<any>;
click: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
}, {}, {}, "">;
type $$ComponentProps = {
active?: boolean;
icon?: string;
badge?: string;
hasNested?: boolean;
expanded?: boolean;
className?: string;
children: any;
};
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
$$bindings?: Bindings;
} & Exports;
(internal: unknown, props: Props & {
$$events?: Events;
$$slots?: Slots;
}): Exports & {
$set?: any;
$on?: any;
};
z_$$bindings?: Bindings;
}
//# sourceMappingURL=SidebarItem.svelte.d.ts.map