Current section

Files

Jump to
hologram assets js events input_event.mjs
Raw

assets/js/events/input_event.mjs

"use strict";
import Type from "../type.mjs";
export default class InputEvent {
static buildOperationParam(event) {
return Type.map([[Type.atom("value"), Type.bitstring(event.target.value)]]);
}
static isEventIgnored(_event) {
return false;
}
}