chore: improve types
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2022-09-15 14:32:29 +02:00
parent 2683fec0a6
commit 6d9c4a7aa0
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 5 additions and 6 deletions

View File

@ -6,12 +6,11 @@
</template>
<script lang="ts" setup>
defineProps({
color: {
type: String,
required: true,
},
})
import type { Color } from 'csstype'
defineProps< {
color: Color,
}>()
</script>
<style scoped>