import * as ts from 'typescript'; import { Queue } from '../processing-queue'; import { SerializedCodeRange } from '../types/serialized-entities'; /** * Serialize a code range in a SourceFile * * @param sourceFile source file in which the code range exists * @param pos beginning location * @param end end location * @param q processing queue */ export default function serializeLocation(sourceFile: ts.SourceFile, pos: number, end: number, q: Queue): SerializedCodeRange; //# sourceMappingURL=location.d.ts.map