/** * @import {NodeWithLocation} from './types' */ /** * @deprecated - Moved to lavamoat-core - use the same function from there for * better types * @param {NodeWithLocation} node * @param {{ content: string | undefined }} moduleRecord * @returns {{ range: string; sample: string }} */ export function codeSampleFromAstNode(node: NodeWithLocation, moduleRecord: { content: string | undefined; }): { range: string; sample: string; }; import type { NodeWithLocation } from './types'; //# sourceMappingURL=codeSampleFromAstNode.d.ts.map