UNPKG

1.03 kBTypeScriptView Raw
1/**
2 * Defaults values for TypeDoc options
3 * @module
4 */
5import type { BundledLanguage } from "@gerrit0/mini-shiki";
6import type { EnumKeys } from "../enum.js";
7import type { ReflectionKind } from "../../models/index.js";
8export declare const excludeNotDocumentedKinds: readonly EnumKeys<typeof ReflectionKind>[];
9export declare const excludeTags: readonly `@${string}`[];
10export declare const blockTags: readonly `@${string}`[];
11export declare const inlineTags: readonly `@${string}`[];
12export declare const modifierTags: readonly `@${string}`[];
13export declare const cascadedModifierTags: readonly `@${string}`[];
14export declare const notRenderedTags: readonly `@${string}`[];
15export declare const highlightLanguages: readonly BundledLanguage[];
16export declare const ignoredHighlightLanguages: readonly string[];
17export declare const sort: readonly string[];
18export declare const kindSortOrder: readonly EnumKeys<typeof ReflectionKind>[];
19export declare const requiredToBeDocumented: readonly EnumKeys<typeof ReflectionKind>[];