mirror of
https://git.leinelab.org/Mal/mr-crocs-adventures.git
synced 2026-03-18 05:12:23 +01:00
10 lines
270 B
JavaScript
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;
|
|
}
|
|
} |