Coda by Ian Macalinao
    Preparing search index...

    Interface BytesValueNode

    A concrete bytes value, encoded as text in the chosen encoding.

    interface BytesValueNode {
        data: string;
        encoding: BytesEncoding;
        kind: "bytesValueNode";
    }
    Index
    data: string

    The bytes encoded as a text string per the encoding attribute.

    encoding: BytesEncoding

    The encoding used to represent the bytes as text.

    kind: "bytesValueNode"