-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathIJsonWrapper.js
More file actions
55 lines (42 loc) · 843 Bytes
/
IJsonWrapper.js
File metadata and controls
55 lines (42 loc) · 843 Bytes
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
class IJsonWrapper {
get IsArray() {
throw new Error('FIXME');
}
get IsBoolean() {
throw new Error('FIXME');
}
get IsDouble() {
throw new Error('FIXME');
}
get IsObject() {
throw new Error('FIXME');
}
get IsString() {
throw new Error('FIXME');
}
get IsNull() {
throw new Error('FIXME');
}
SetBoolean(val) {
throw new Error('FIXME');
}
SetDouble(val) {
throw new Error('FIXME');
}
SetJsonType(type) {
throw new Error('FIXME');
}
SetString(val) {
throw new Error('FIXME');
}
SetNull() {
throw new Error('FIXME');
}
Add(val) {
throw new Error('FIXME');
}
Set(key, val) {
throw new Error('FIXME');
}
}
export { IJsonWrapper };