@valkey/valkey-glide
    Preparing search index...

    Represents options for formatting JSON data, to be used in the JSON.GET command.

    interface JsonGetOptions {
        indent?: GlideString;
        newline?: GlideString;
        noescape?: boolean;
        path?: GlideString | GlideString[];
        space?: GlideString;
    }
    Index

    Properties

    indent?: GlideString

    Sets an indentation string for nested levels.

    newline?: GlideString

    Sets a string that's printed at the end of each line.

    noescape?: boolean

    Optional, allowed to be present for legacy compatibility and has no other effect

    The path or list of paths within the JSON document. Default is root $.

    space?: GlideString

    Sets a string that's put between a key and a value.