infinum/mobx-collection-store

View on GitHub
src/interfaces/IPatch.ts

Summary

Maintainability
A
0 mins
Test Coverage
import patchType from '../enums/patchType';

interface IPatch {
  op: patchType;
  from?: string;
  path: string;
  value?: any;
  oldValue?: any;
}

export default IPatch;