deno.com
type alias Deno.lint.LintVisitor
unstable

Definition #

[P in Node["type"]]?: (node: Extract<Node, { type: P; }>) => void
& [P in Node["type"] in keyof `${P}:exit`]?: (node: Extract<Node, { type: P; }>) => void
& Partial<{ [key: string]: (node: any) => void; }>