I was wondering how i can convert this little snippet from typescript into js?
<script setup lang="ts">
import { type Content } from '@prismicio/client';
defineProps(
getSliceComponentProps<Content.HeroSlice>([
"slice",
]),
);
</script>