/** * Represents a single patch operation * @export * @class PatchOperation */ export declare class PatchOperation { /** * @type {string} * @memberof PatchOperation */ op?: string | undefined; /** * @type {string} * @memberof PatchOperation */ path?: string | undefined; /** * @type {string} * @memberof PatchOperation */ value?: string | undefined; }