diff --git a/src/core/operations/LineBreak.mjs b/src/core/operations/LineBreak.mjs new file mode 100644 index 00000000..d740ae33 --- /dev/null +++ b/src/core/operations/LineBreak.mjs @@ -0,0 +1,15 @@ +/** + * @author ThomasNotTom + * @copyright Crown Copyright 2016 + * @license Apache-2.0 + */ + +import Operation from "../Operation.mjs"; + + +/** + * Line Break operation + */ +class LineBreak extends Operation {} + +export default LineBreak;