| 15 | // ─── Svelte-specific types ────────────────────────────────────────────────── |
| 16 | |
| 17 | export interface ComponentRenderProps<P = Record<string, unknown>> { |
| 18 | props: P; |
| 19 | renderNode: Snippet<[unknown]>; |
| 20 | } |
| 21 | |
| 22 | export type ComponentRenderer<P = Record<string, unknown>> = Component<ComponentRenderProps<P>>; |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected