Interface SourceReference

interface SourceReference {
    character: number;
    fileName: string;
    line: number;
    url?: string;
}

Hierarchy

Properties

character: number

The index of the character that emitted the declaration.

fileName: string

The filename of the source file.

line: number

The one based number of the line that emitted the declaration.

url?: string

URL for displaying the source file.

Generated using TypeDoc