类型定义

写组件时遇到的问题

<script lang="ts" context="module">
  import type {ComponentProps} from 'svelte'
  import Box from './Box.svelte'
</script>

<script lang="ts">
  type $$Props = ComponentProps<Box>
</script>

<Box {...$$props}><path d="m7 10 5 5 5-5z"/></Box>

参考资料:

最后更新于