types: client-io-component.ts

This commit is contained in:
Michael Brevard 2024-03-24 22:24:55 +02:00 committed by GitHub
parent 932d143688
commit cb221ed579
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@ import { defineComponent, onMounted, onUnmounted, ref } from 'vue'
export default defineComponent({
setup (props, { emit }) {
const intersectionTarget = ref(null)
let observer = null
let observer: IntersectionObserver | null = null
const intersectionCallback = (entries) => {
entries.forEach((entry) => {