@sudoo/marked
Version:
JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous
13 lines (12 loc) • 415 B
TypeScript
/**
* @author WMXPY
* @namespace SourceMap_LocationFinder
* @description Raw
*/
import * as EST from "estree";
import { BaseSourceMapLocationFinder } from "./base";
export declare class RawSourceMapLocationFinder extends BaseSourceMapLocationFinder {
static fromEmpty(): RawSourceMapLocationFinder;
private constructor();
findSourceLocation(position: EST.Position, _node: EST.Node): EST.Position;
}