mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-14 21:43:04 +00:00
15 lines
251 B
TypeScript
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;
|
|
}
|