@@ -15,8 +15,8 @@ const componentCache = new Set()
1515/**
1616 * Customize how Svelte renders the component.
1717 *
18- * @template {import('./component- types.js').Component} C
19- * @typedef {import('./component- types.js').Props<C> | Partial<import('./component- types.js').MountOptions<C>> } SvelteComponentOptions
18+ * @template {import('./core/ types.js').Component} C
19+ * @typedef {import('./core/ types.js').Props<C> | Partial<import('./core/ types.js').MountOptions<C>> } SvelteComponentOptions
2020 */
2121
2222/**
@@ -32,15 +32,15 @@ const componentCache = new Set()
3232/**
3333 * The rendered component and bound testing functions.
3434 *
35- * @template {import('./component- types.js').Component} C
35+ * @template {import('./core/ types.js').Component} C
3636 * @template {import('@testing-library/dom').Queries } [Q=typeof import('@testing-library/dom').queries]
3737 *
3838 * @typedef {{
3939 * container: HTMLElement
4040 * baseElement: HTMLElement
41- * component: import('./component- types.js').Exports<C>
41+ * component: import('./core/ types.js').Exports<C>
4242 * debug: (el?: HTMLElement | DocumentFragment) => void
43- * rerender: (props: Partial<import('./component- types.js').Props<C>>) => Promise<void>
43+ * rerender: (props: Partial<import('./core/ types.js').Props<C>>) => Promise<void>
4444 * unmount: () => void
4545 * } & {
4646 * [P in keyof Q]: import('@testing -library/dom').BoundFunction<Q[P]>
@@ -50,10 +50,10 @@ const componentCache = new Set()
5050/**
5151 * Render a component into the document.
5252 *
53- * @template {import('./component- types.js').Component} C
53+ * @template {import('./core/ types.js').Component} C
5454 * @template {import('@testing-library/dom').Queries } [Q=typeof import('@testing-library/dom').queries]
5555 *
56- * @param {import('./component- types.js').ComponentType<C> } Component - The component to render.
56+ * @param {import('./core/ types.js').ComponentType<C> } Component - The component to render.
5757 * @param {SvelteComponentOptions<C> } options - Customize how Svelte renders the component.
5858 * @param {RenderOptions<Q> } renderOptions - Customize how Testing Library sets up the document and binds queries.
5959 * @returns {RenderResult<C, Q> } The rendered component and bound testing functions.
0 commit comments