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> </template>
<script lang="ts" setup> <script lang="ts" setup>
defineProps({ import type { Color } from 'csstype'
color: {
type: String, defineProps< {
required: true, color: Color,
}, }>()
})
</script> </script>
<style scoped> <style scoped>