WEB WAM IMPLEMENTATION!!!!! (#708)
* feat(WAM): initial commit * fix(wam-development): I made a whoopsie * Update Example/example.ts Co-authored-by: Javier Cuevas <javiercr@gmail.com> --------- Co-authored-by: Javier Cuevas <javiercr@gmail.com>
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { EventInputType } from './constants'
|
||||
|
||||
export class BinaryInfo {
|
||||
protocolVersion = 5
|
||||
sequence = 0
|
||||
events = [] as EventInputType[]
|
||||
buffer: Buffer[] = []
|
||||
|
||||
constructor(options: Partial<BinaryInfo> = {}) {
|
||||
Object.assign(this, options)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user