diff --git a/plugins/search-backend-module-techdocs/config.d.ts b/plugins/search-backend-module-techdocs/config.d.ts index 05e4d5d6b8..630bfc3692 100644 --- a/plugins/search-backend-module-techdocs/config.d.ts +++ b/plugins/search-backend-module-techdocs/config.d.ts @@ -31,7 +31,7 @@ export interface Config { * A templating string with placeholders, to form the final location of * the entity. * - * @defaultValue '/docs/:namespace/:kind/:name/:path' + * Defaults to `'/docs/:namespace/:kind/:name/:path'`. */ locationTemplate?: string; /** @@ -40,11 +40,11 @@ export interface Config { * number of entities fetched at a time from the catalog, as well as how * many things are being processed concurrently. * - * @defaultValue 10 + * Defaults to `10`. */ parallelismLimit?: number; /** - * @defaultValue false + * Defaults to `false`. */ legacyPathCasing?: boolean; };