/** * Documenter "Mode". Determines the shape of the output, including what does or does not get processed. */ export declare enum DocGenMode { /** * Generates documentation for all exported API members */ Full = "full", /** * Generates the package summary documentation only * (i.e. the notes associated with the `@packageDocumentation` comment in the package's root export) */ PackageSummaries = "package-summaries" } //# sourceMappingURL=DocGenMode.d.ts.map