* Store data to the current storage. * This will reset the counter of changes (`editor.getDirtyCount()`). * @param {Object} [options] Storage options. * @returns {Object} Stored data. * @example * const storedData = await editor.store();
(options?: T)
| 528 | * const storedData = await editor.store(); |
| 529 | */ |
| 530 | async store<T extends StorageOptions>(options?: T) { |
| 531 | return await this.em.store(options); |
| 532 | } |
| 533 | |
| 534 | /** |
| 535 | * Load data from the current storage. |