Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1x 14x 11x 11x | import { IBounds2 } from "../../../models/bounds2.js"; export class EventTouch extends Event { private readonly _positions: IBounds2[]; public get positions(): IBounds2[] { return this._positions; } constructor(positions: IBounds2[], type: string, eventInitDict?: TouchEventInit | undefined) { super(type, eventInitDict); this._positions = positions; } } |