Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
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.115.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"