| 10 | let div!: HTMLDivElement, disposer: () => void; |
| 11 | |
| 12 | interface ExampleProps { |
| 13 | id: string; |
| 14 | } |
| 15 | const [comp, setComp] = createSignal<Component<ExampleProps> | keyof JSX.IntrinsicElements>(), |
| 16 | [name, setName] = createSignal("Smith"); |
| 17 | const Component = () => ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…