mr-crocs-adventures/tilorswift/js/events/TilorswiftAddRowsEvent.js

10 lines
270 B
JavaScript
Raw Normal View History

2020-02-09 00:29:46 +01:00
import TilorswiftEvent from "./TilorswiftEvent.js";
export default class TilorswiftAddRowsEvent extends Event
{
constructor(beforeRow, rowCount) {
super(TilorswiftEvent.ADD_ROWS);
this.beforeRow = beforeRow;
this.rowCount = rowCount;
}
}