1
2
3
4
5
6
7
8
9
10
11
12
13
14
| "use strict";
|
| const UIEventImpl = require("./UIEvent-impl").implementation;
|
| const TouchEventInit = require("../generated/TouchEventInit");
|
| class TouchEventImpl extends UIEventImpl {
|
| }
| TouchEventImpl.defaultInit = TouchEventInit.convert(undefined);
|
| module.exports = {
| implementation: TouchEventImpl
| };
|
|