KC's Workspace
    Preparing search index...

    Helper to describe a set of serialized properties. Primitive types are returned directly, while other models are first passed through ModelToObject. This helper removes the readonly modifier from properties since the result of serialization is a plain object that consumers may modify as they choose, TypeDoc doesn't care.

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

    Hierarchy (View Summary)

    Index

    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.