UNPKG

magic-grid

Version:

Super lightweight javascript library for dynamic grid layouts.

18 lines (15 loc) 285 B
class Listener { /* Listener class holds the event, handler and a unique id */ id; event; handler; constructor(id,event, handler){ this.id = id; this.event = event; this.handler = handler; } } module.exports = Listener;