export const editorMakeNewlineWithKey = createAction(
  'EDITOR_MAKE_NEWLINE_WITH_KEY',
  resolve => (value: EditorValue, key: string | null) =>
    resolve(value, { key }),
);