UNPKG

svelte-super

Version:

Powerfull multicomponent for creating tabs, accordion, step-by-step instructions, and everything you have enough imagination for.

12 lines (11 loc) 305 B
export default SuperControl; type SuperControl = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial<$$ComponentProps>): void; }; declare const SuperControl: import("svelte").Component<{ children: any; }, {}, "">; type $$ComponentProps = { children: any; };