Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1x | import type {QuillTrace} from '../../types'; export const fuzz6QuillTrace: QuillTrace = { contents: {ops: [{attributes: {italic: true}, insert: 'AA'}, {insert: 'ABBBB'}, {insert: {link: 'C'}}]}, transactions: [ [{insert: 'AAAA'}], [{retain: 3, attributes: {bold: null}}], [{retain: 2, attributes: {italic: true}}, {delete: 1}], [{retain: 3}, {insert: 'BBBB'}, {insert: {link: 'C'}}], [{retain: 2}, {retain: 2, attributes: {bold: null}}], ], }; |