interface RollupLog {
    binding?: string;
    cause?: unknown;
    code?: string;
    exporter?: string;
    frame?: string;
    hook?: string;
    id?: string;
    ids?: string[];
    loc?: {
        column: number;
        file?: string;
        line: number;
    };
    message: string;
    meta?: any;
    names?: string[];
    plugin?: string;
    pluginCode?: unknown;
    pos?: number;
    reexporter?: string;
    stack?: string;
    url?: string;
}

Hierarchy (view full)

Properties

binding?: string
cause?: unknown
code?: string
exporter?: string
frame?: string
hook?: string
id?: string
ids?: string[]
loc?: {
    column: number;
    file?: string;
    line: number;
}

Type declaration

  • column: number
  • Optional file?: string
  • line: number
message: string
meta?: any
names?: string[]
plugin?: string
pluginCode?: unknown
pos?: number
reexporter?: string
stack?: string
url?: string