/** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import StackFrame from './stack-frame.js'; /** * Enhances a set of StackFrames with their original positions and code (when available). * @param {StackFrame[]} frames A set of StackFrames which contain (generated) code positions. * @param {number} [contextLines=3] The number of lines to provide before and after the line specified in the StackFrame. */ declare function map(frames: StackFrame[], contextLines?: number): Promise; export { map }; export default map;