File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
<script >
2
2
import { fade , fly } from ' svelte/transition'
3
3
import { flip } from ' svelte/animate'
4
- import { toast } from ' ./stores'
4
+ import { toast } from ' ./stores.js '
5
5
import ToastItem from ' ./ToastItem.svelte'
6
6
7
- /** @type {import('./stores').SvelteToastOptions} */
7
+ /** @type {import('./stores.js ').SvelteToastOptions} */
8
8
export let options = {}
9
9
/** @type {(string|'default')} */
10
10
export let target = ' default'
11
11
12
- /** @type {import('./stores').SvelteToastOptions[]} */
12
+ /** @type {import('./stores.js ').SvelteToastOptions[]} */
13
13
let items = []
14
14
15
15
/** @param {Object<string,string|number>} [theme] */
Original file line number Diff line number Diff line change 2
2
import { onMount , onDestroy } from ' svelte'
3
3
import { tweened } from ' svelte/motion'
4
4
import { linear } from ' svelte/easing'
5
- import { toast } from ' ./stores'
5
+ import { toast } from ' ./stores.js '
6
6
7
- /** @type {import('./stores').SvelteToastOptions} */
7
+ /** @type {import('./stores.js ').SvelteToastOptions} */
8
8
export let item
9
9
10
10
/** @type {any} */
You can’t perform that action at this time.
0 commit comments