TypeDoc API - v0.28.20
    Preparing search index...

    Interface SourceReference

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

    Hierarchy

    • S<SourceReference, "fileName" | "line" | "character" | "url">
      • SourceReference
    Index
    character: number

    The index of the character that emitted the declaration.

    fileName: NormalizedPath

    The filename of the source file. This will initially be absolute before being overwritten with a base path relative path during resolution.

    line: number

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

    url?: string

    URL for displaying the source file.