From bce4ab3facf63f70a0dd3cefa1f8c82453dba2d4 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Fri, 24 Jun 2022 19:12:13 +1000 Subject: Add type annotations for UI options --- src/components/TileInfoModal.vue | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/components/TileInfoModal.vue') diff --git a/src/components/TileInfoModal.vue b/src/components/TileInfoModal.vue index 83155ba..6fcb023 100644 --- a/src/components/TileInfoModal.vue +++ b/src/components/TileInfoModal.vue @@ -2,10 +2,8 @@ import {defineComponent, PropType} from 'vue'; import CloseIcon from './icon/CloseIcon.vue'; import Tile from './Tile.vue' -import {LayoutNode} from '../layout'; -import type {LayoutOptions} from '../layout'; -import type {TolMap} from '../lib'; -import {TolNode, DescInfo, ImgInfo, TileInfoResponse} from '../lib'; +import {LayoutNode, LayoutOptions} from '../layout'; +import {TolNode, TolMap, UiOptions, DescInfo, ImgInfo, TileInfoResponse} from '../lib'; import {capitalizeWords} from '../lib'; // Displays information about a tree-of-life node @@ -25,7 +23,7 @@ export default defineComponent({ nodeName: {type: String, required: true}, tolMap: {type: Object as PropType, required: true}, lytOpts: {type: Object as PropType, required: true}, - uiOpts: {type: Object, required: true}, + uiOpts: {type: Object as PropType, required: true}, }, computed: { displayName(): string { -- cgit v1.2.3