export const editorIndentWithKey = createAction(
  'EDITOR_INDENT_ACTION_WITH_KEY',
  resolve => (value: EditorIndentValue, key: string | null) =>
    resolve(value, { key }),
);