1234567891011121314151617181920212223 |
- class IntersectionObserver {
- root = null;
- rootMargin = "";
- thresholds = [];
- disconnect() {
- return null;
- }
- observe() {
- return null;
- }
- takeRecords() {
- return [];
- }
- unobserve() {
- return null;
- }
- }
- window.IntersectionObserver = IntersectionObserver;
- global.IntersectionObserver = IntersectionObserver;
|