Skip to main content
Module

x/deno_doc/types.d.ts>DeclarationKind

Documentation generator for Deno
Go to Latest
type alias DeclarationKind
import { type DeclarationKind } from "https://deno.land/x/deno_doc@0.74.0/types.d.ts";

Indicates how the documentation node was declared. "private" indicates the node is un-exported. "export" indicates it is exported from the current module. "declare" indicates that it is a type only declaration.

definition: "private" | "export" | "declare"