Coda by Ian Macalinao
    Preparing search index...

    Interface StringDisplayNode

    Display metadata for a string value. The string's wire encoding is carried by stringTypeNode.encoding; this node only addresses presentation.

    interface StringDisplayNode {
        kind: "stringDisplayNode";
        sliceEnd?: number;
        sliceStart?: number;
    }
    Index
    kind: "stringDisplayNode"
    sliceEnd?: number

    The end index of the displayed slice, exclusive. Defaults to the end of the string. Indices apply to the decoded character sequence.

    sliceStart?: number

    The start index of the displayed slice, inclusive. Defaults to the start of the string. Indices apply to the decoded character sequence.