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