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 { define } from "../scripts/class-definitions";
export default [
define({
name: "H2FrameParser",
JSType: "0b11101110",
proto: {
request: {
fn: "request",
length: 2,
},
ping: {
fn: "ping",
length: 0,
},
goaway: {
fn: "goaway",
length: 3,
},
getCurrentState: {
fn: "getCurrentState",
length: 0,
},
settings: {
fn: "updateSettings",
length: 1,
},
read: {
fn: "read",
length: 1,
},
detach: {
fn: "detach",
length: 0,
},
},
finalize: true,
construct: true,
klass: {},
}),
];
|