UNPKG

whs

Version:

Super-fast 3D framework for Web Applications & Games. Based on Three.js

27 lines (21 loc) 554 B
import {ModuleManager} from '../../core'; export class EventsPatchModule { /** * TODO define type for params * @param manager the manager */ manager(manager?: ModuleManager): void; /** * * @param originObject * @param destObject * @param events the array of events (e.g mouseup) */ patchEvents(originObject: any, destObject: any, events: Array<string>): void; /** * TODO define type for params * @param self this module */ integrate(self: EventsPatchModule): void; // TODO completes other methods }