summaryrefslogtreecommitdiff
path: root/packages/webapi/src/lib/Observer.ts
blob: 845de13127ada2383c698b8c7bb27df96a15f190 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import * as _ from './utils'

export class IntersectionObserver {
	disconnect() {}

	observe() {}

	takeRecords() {
		return []
	}

	unobserve() {}
}

export class MutationObserver {
	disconnect() {}

	observe() {}

	takeRecords() {
		return []
	}

	unobserve() {}
}

export class ResizeObserver {
	disconnect() {}

	observe() {}

	takeRecords() {
		return []
	}

	unobserve() {}
}

_.allowStringTag(MutationObserver)
_.allowStringTag(IntersectionObserver)
_.allowStringTag(ResizeObserver)