UNPKG

@sudoo/marked

Version:

JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous

10 lines (9 loc) 281 B
/** * @author WMXPY * @namespace SourceMap_LocationFinder * @description Base Location Finder */ import * as EST from "estree"; export declare abstract class BaseSourceMapLocationFinder { abstract findSourceLocation(position: EST.Position, node: EST.Node): EST.Position; }