UNPKG

testplane

Version:

Tests framework based on mocha and wdio

5 lines (4 loc) 373 B
import { SourceMapConsumer } from "source-map-js"; import type { SufficientStackFrame, ResolvedFrame } from "./types"; export declare const extractSourceMaps: (fileContents: string, fileName: string) => Promise<SourceMapConsumer | null>; export declare const resolveLocationWithSourceMap: (stackFrame: SufficientStackFrame, sourceMaps: SourceMapConsumer) => ResolvedFrame;