Update api-report

Signed-off-by: Joe Porpeglia <josephp@spotify.com>
This commit is contained in:
Joe Porpeglia
2022-01-13 15:20:59 -05:00
committed by Joe Porpeglia
parent cd3c5b132e
commit f911a60baf
4 changed files with 44 additions and 5 deletions
+5 -1
View File
@@ -21,7 +21,11 @@
*/
export { createRouter } from './service';
export type { RouterOptions } from './service';
export type {
RouterOptions,
RecommendedDeploymentOptions,
OutOfTheBoxDeploymentOptions,
} from './service';
export { DefaultTechDocsCollator } from './search';
export type { TechDocsCollatorOptions } from './search';
@@ -15,4 +15,8 @@
*/
export { createRouter } from './router';
export type { RouterOptions } from './router';
export type {
RouterOptions,
RecommendedDeploymentOptions,
OutOfTheBoxDeploymentOptions,
} from './router';
@@ -40,7 +40,7 @@ import { CachedEntityLoader } from './CachedEntityLoader';
* All of the required dependencies for running TechDocs in the "out-of-the-box"
* deployment configuration (prepare/generate/publish all in the Backend).
*/
type OutOfTheBoxDeploymentOptions = {
export type OutOfTheBoxDeploymentOptions = {
preparers: PreparerBuilder;
generators: GeneratorBuilder;
publisher: PublisherBase;
@@ -55,7 +55,7 @@ type OutOfTheBoxDeploymentOptions = {
* Required dependencies for running TechDocs in the "recommended" deployment
* configuration (prepare/generate handled externally in CI/CD).
*/
type RecommendedDeploymentOptions = {
export type RecommendedDeploymentOptions = {
publisher: PublisherBase;
logger: Logger;
discovery: PluginEndpointDiscovery;