infinum/mobx-collection-store

View on GitHub
src/enums/patchType.ts

Summary

Maintainability
A
0 mins
Test Coverage
enum patchType {
  ADD = 'add',
  REMOVE = 'remove',
  REPLACE = 'replace',
  COPY = 'copy',
  MOVE = 'move',
  TEST = 'test',
}

export default patchType;