KC's Workspace
    Preparing search index...
    interface FilePosition {
        column: number;
        endColumn?: number;
        endLine?: number;
        endOffset?: number;
        file?: string;
        line: number;
        offset: number;
        source?: string;
        url: string;
    }
    Index

    Properties

    column: number

    Column of inclusive start position in source file.

    endColumn?: number

    Column of exclusive end position in source file.

    endLine?: number

    Line of exclusive end position in source file.

    endOffset?: number

    Offset of exclusive end position in source file.

    file?: string

    Absolute path to the source file.

    line: number

    Line of inclusive start position in source file.

    offset: number

    Offset of inclusive start position in source file.

    source?: string

    Source code.

    url: string

    URL for the source file.