Skip to content

DeclarationKind

Represents the types of TypeScript declarations that can be documented.

Signature

typescript
type DeclarationKind = | "function"
  | "class"
  | "interface"
  | "type"
  | "enum"
  | "variable";

Released under the MIT License.