UNPKG

web-dev-server

Version:

Node.js simple http server for common development or training purposes.

17 lines (16 loc) 391 B
import { CallSite } from "./CallSite"; export interface StackTraceItem { stack: CallSite; scope: any; fnFullName: string; isConstructor: boolean; isNative: boolean; isToplevel: boolean; isEval: boolean; arguments: any[]; argumentsSerialized: string; file: string; line: number; column: number; evalOrigin: string | null; }