mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
// @ts-expect-error incomplete implementation
|
|
window.IntersectionObserver = class IntersectionObserver {
|
|
// eslint-disable-next-line
|
|
constructor() {}
|
|
observe() {}
|
|
unobserve() {}
|
|
disconnect() {}
|
|
}
|