import { CanvasHistoryRemovalOptions } from './types'; import History from '../../History'; /** * This class contains data of a removal event to the canvas * @author Eirik Måseidvåg */ export default class CanvasHistoryRemoval extends History { /** * The canvas element IDs removed from the canvas * @public */ readonly elementIds: Array; /** * Construct the history object * @param options */ constructor(options: CanvasHistoryRemovalOptions); }