@did-btc1/common
    Preparing search index...

    Interface PatchOperation

    A JSON Patch operation, as defined in RFC 6902.

    interface PatchOperation {
        from?: string;
        op: string;
        path: string;
        value?: any;
    }
    Index

    Properties

    Properties

    from?: string
    op: string
    path: string
    value?: any