@stacktrace-lite/core
    Preparing search index...

    Interface StackFrame

    A single parsed stack frame extracted from an error stack string.

    The shape targets the common cross-engine fields you’ll typically want to filter or display: function name, file, and position (line/column). raw keeps the original line for troubleshooting or custom rendering.

    interface StackFrame {
        columnNumber: null | number;
        fileName: null | string;
        functionName: null | string;
        lineNumber: null | number;
        raw: string;
    }
    Index

    Properties

    columnNumber: null | number

    1-based column number within the line, if present.

    fileName: null | string

    The source file path/URL, if present on this line.

    functionName: null | string

    The function or method name for this frame, if known.

    lineNumber: null | number

    1-based line number within the file, if present.

    raw: string

    The original, trimmed line from the stack string.