Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ParsedSource

import type { ParsedSource } from "https://denopkg.com/deco-cx/deno_ast_wasm@0.1.0/mod.ts";
interface ParsedSource {
comments: [{
text: string;
span_lo: number;
span_hi: number;
}
]
;
program: Program;
}

§Properties

§
comments: [{
text: string;
span_lo: number;
span_hi: number;
}
]
[src]