Interface AnalyzedLine

Internal type used for parsing yaml line-by-line.

interface AnalyzedLine {
    i: number;
    k?: string;
    t: number;
    v?: string;
}

Properties

i k? t v?

Properties

i: number

indent level

k?: string

key

t: number

line type

v?: string

value