@@ -13,8 +13,8 @@ const componentCache = new Set()
1313/**
1414 * Customize how Svelte renders the component.
1515 *
16- * @template {import('./component- types.js').Component} C
17- * @typedef {import('./component- types.js').Props<C> | Partial<import('./component- types.js').MountOptions<C>> } SvelteComponentOptions
16+ * @template {import('./core/ types.js').Component} C
17+ * @typedef {import('./core/ types.js').Props<C> | Partial<import('./core/ types.js').MountOptions<C>> } SvelteComponentOptions
1818 */
1919
2020/**
@@ -30,15 +30,15 @@ const componentCache = new Set()
3030/**
3131 * The rendered component and bound testing functions.
3232 *
33- * @template {import('./component- types.js').Component} C
33+ * @template {import('./core/ types.js').Component} C
3434 * @template {import('@testing-library/dom').Queries } [Q=typeof import('@testing-library/dom').queries]
3535 *
3636 * @typedef {{
3737 * container: HTMLElement
3838 * baseElement: HTMLElement
39- * component: import('./component- types.js').Exports<C>
39+ * component: import('./core/ types.js').Exports<C>
4040 * debug: (el?: HTMLElement | DocumentFragment) => void
41- * rerender: (props: Partial<import('./component- types.js').Props<C>>) => Promise<void>
41+ * rerender: (props: Partial<import('./core/ types.js').Props<C>>) => Promise<void>
4242 * unmount: () => void
4343 * } & {
4444 * [P in keyof Q]: import('@testing -library/dom').BoundFunction<Q[P]>
@@ -48,10 +48,10 @@ const componentCache = new Set()
4848/**
4949 * Render a component into the document.
5050 *
51- * @template {import('./component- types.js').Component} C
51+ * @template {import('./core/ types.js').Component} C
5252 * @template {import('@testing-library/dom').Queries } [Q=typeof import('@testing-library/dom').queries]
5353 *
54- * @param {import('./component- types.js').ComponentType<C> } Component - The component to render.
54+ * @param {import('./core/ types.js').ComponentType<C> } Component - The component to render.
5555 * @param {SvelteComponentOptions<C> } options - Customize how Svelte renders the component.
5656 * @param {RenderOptions<Q> } renderOptions - Customize how Testing Library sets up the document and binds queries.
5757 * @returns {RenderResult<C, Q> } The rendered component and bound testing functions.
0 commit comments