@phroun/paged-buffer
Version:
High-performance buffer system for editing massive files with intelligent memory management and undo/redo capabilities
19 lines • 607 B
JavaScript
;
/**
* @fileoverview Common types shared across the paged buffer system
* @description Centralized type definitions to avoid duplication
* @author Jeffrey R. Day
* @version 1.0.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.OperationType = void 0;
/**
* Types of buffer operations
*/
var OperationType;
(function (OperationType) {
OperationType["INSERT"] = "insert";
OperationType["DELETE"] = "delete";
OperationType["OVERWRITE"] = "overwrite";
})(OperationType || (exports.OperationType = OperationType = {}));
//# sourceMappingURL=common.js.map