import { doc } from "https://deno.land/x/deno_doc@0.124.0/mod.ts";
Generate asynchronously an array of documentation nodes for the supplied module.
Example
import { doc } from "https://deno.land/x/deno_doc/mod.ts";
const entries = await doc("https://deno.land/std/fmt/colors.ts");
for (const entry of entries) {
console.log(`name: ${entry.name} kind: ${entry.kind}`);
}
Parameters
optional
options: DocOptions = [UNSUPPORTED]A set of options for generating the documentation