svelte-super
Version:
Powerfull multicomponent for creating tabs, accordion, step-by-step instructions, and everything you have enough imagination for.
16 lines (15 loc) • 381 B
TypeScript
export default SuperContent;
type SuperContent = {
$on?(type: string, callback: (e: any) => void): () => void;
$set?(props: Partial<$$ComponentProps>): void;
};
declare const SuperContent: import("svelte").Component<{
children: any;
id: any;
opened?: boolean;
}, {}, "opened">;
type $$ComponentProps = {
children: any;
id: any;
opened?: boolean;
};