/** * * @export * @class Operation */ export declare class Operation { /** * @type {object} * @memberof Operation */ value?: object | undefined; /** * @type {string} * @memberof Operation */ path?: string | undefined; /** * @type {string} * @memberof Operation */ op?: string | undefined; /** * @type {string} * @memberof Operation */ from?: string | undefined; }