This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Type definitions for JSON Patch, based on RFC 6902: | |
| * https://datatracker.ietf.org/doc/html/rfc6902 | |
| * | |
| * This file defines the TypeScript types for JSON Patch operations | |
| * (`add`, `remove`, `replace`, `move`, `copy`, `test`) and JSON Patch | |
| * documents. These types are intended to ensure type safety when | |
| * constructing or working with JSON Patch structures. | |
| * | |
| * @see RFC 6902 (JSON Patch): https://datatracker.ietf.org/doc/html/rfc6902 |
OlderNewer