| 159 | |
| 160 | type Props = Record<string, any>; |
| 161 | export interface SvelteComponentDev { |
| 162 | $set(props?: Props): void; |
| 163 | $on(event: string, callback: ((event: any) => void) | null | undefined): () => void; |
| 164 | $destroy(): void; |
| 165 | [accessor: string]: any; |
| 166 | } |
| 167 | |
| 168 | export interface ComponentConstructorOptions<Props extends Record<string, any> = Record<string, any>> { |
| 169 | target: Element | Document | ShadowRoot; |
no outgoing calls
no test coverage detected