Files
dspace-angular/src/app/core/json-patch/json-patch.model.ts
2018-07-26 18:36:36 +02:00

15 lines
251 B
TypeScript

export enum JsonPatchOperationType {
test = 'test',
remove = 'remove',
add = 'add',
replace = 'replace',
move = 'move',
copy = 'copy',
}
export class JsonPatchOperationModel {
op: JsonPatchOperationType;
path: string;
value: any;
}