| 4 | import type { QwikifyOptions, QwikifyProps } from './types'; |
| 5 | |
| 6 | interface SlotState { |
| 7 | el?: Element; |
| 8 | scopeId: string; |
| 9 | attachedEl?: Element; |
| 10 | } |
| 11 | const SlotCtx = createContext<SlotState>({ scopeId: '' }); |
| 12 | |
| 13 | export function main(slotEl: Element | undefined, scopeId: string, RootCmp: any, props: any) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…