Type Alias KeyProviderPatchBase

A JSON Patch document as defined in https://datatracker.ietf.org/doc/html/rfc6902.

{
* op: "replace",
* path: "/name",
* value: "New Encryption Key"
* }
type KeyProviderPatchBase = {
    op: "replace";
    path: string;
    value: string;
}
Index

Properties

Properties

op: "replace"

The operation to be performed.

path: string

The property path.

value: string

The value to be used for this operation.