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

10 lines
270 B
JavaScript

import TilorswiftEvent from "./TilorswiftEvent.js";
export default class TilorswiftAddRowsEvent extends Event
{
constructor(beforeRow, rowCount) {
super(TilorswiftEvent.ADD_ROWS);
this.beforeRow = beforeRow;
this.rowCount = rowCount;
}
}