UNPKG

@typescript-package/history

Version:

A TypeScript package for tracking the history of values.

12 lines (11 loc) 458 B
import { HistoryPrepend } from "./history-prepend.abstract"; /** * @description Manages the redo history with prepend mechanism. * @export * @class RedoHistory * @template [Type=any] The type of elements stored in the history * @template {number} [Size=number] The maximum size of the history. * @extends {HistoryPrepend<Type, Size>} */ export declare class RedoHistory<Type = any, Size extends number = number> extends HistoryPrepend<Type, Size> { }