import { CanvasHistoryTransformationOptions, TransformationChange } from './types'; import History from '../../History'; /** * This class contains data of a Transformation event to transformable canvas elements * @author Eirik Måseidvåg */ export default class CanvasHistoryTransformation extends History { /** * The changes made in the transformation * @public */ readonly changes: Array; /** * Construct the history object * @param options */ constructor(options: CanvasHistoryTransformationOptions); }