forked from MapComplete/MapComplete
Fix: typing
This commit is contained in:
parent
ef1d2c9f56
commit
565e92a37d
1 changed files with 2 additions and 2 deletions
|
@ -1,12 +1,12 @@
|
|||
<script lang="ts">
|
||||
import { Store } from "../../Logic/UIEventSource.js"
|
||||
import { Store, UIEventSource } from "../../Logic/UIEventSource.js"
|
||||
import type { ProvidedImage } from "../../Logic/ImageProviders/ImageProvider"
|
||||
import type { SpecialVisualizationState } from "../SpecialVisualization"
|
||||
import DeletableImage from "./DeletableImage.svelte"
|
||||
|
||||
export let images: Store<ProvidedImage[]>
|
||||
export let state: SpecialVisualizationState
|
||||
export let tags: Store<Record<string, string>>
|
||||
export let tags: UIEventSource<Record<string, string>>
|
||||
</script>
|
||||
|
||||
<div class="flex w-full space-x-2 overflow-x-auto" style="scroll-snap-type: x proximity">
|
||||
|
|
Loading…
Reference in a new issue