@sudoo/marked
Version:
JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous
16 lines (15 loc) • 374 B
TypeScript
/**
* @author WMXPY
* @namespace SourceMap
* @description Declare
*/
export type TransformSourceMap = {
readonly sourceRoot: string;
readonly mappings: string;
};
export type SourceMappingLine = SourceMappingSegment[];
export type SourceMappingSegment = {
readonly targetColumn: number;
readonly sourceLine: number;
readonly sourceColumn: number;
};