A source span indicating a segment of FQL.

interface Span {
    end: number;
    function: string;
    src: string;
    start: number;
}

Properties

Properties

end: number

The span's ending index within the src, inclusive.

function: string

The name of the enclosing function, if applicable.

src: string

A string identifier of the FQL source. For example, if performing a raw query against the API this would be query.

start: number

The span's starting index within the src, inclusive.