import * as ts from 'typescript'; import { SymbolRef } from '../types/ref'; import { SerializedSymbol } from '../types/serialized-entities'; import { Collector } from '../types/walker'; /** * Serialize a ts.Symbol to JSON * * @param symbol Symbol to serialize * @param checker an instance of the TS type checker * @param ref Reference to the symbol * @param c walker collector */ export default function serializeSymbol(symbol: ts.Symbol, checker: ts.TypeChecker, ref: SymbolRef, relatedEntities: ts.Symbol[] | undefined, c: Collector): SerializedSymbol; //# sourceMappingURL=symbol.d.ts.map