(options)
| 30 | * @returns {SvelteComponent<Props, Events, Slots> & Exports} |
| 31 | */ |
| 32 | export function createClassComponent(options) { |
| 33 | // @ts-expect-error $$prop_def etc are not actually defined |
| 34 | return new Svelte4Component(options); |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Takes the component function and returns a Svelte 4 compatible component constructor. |
no outgoing calls
no test coverage detected