From c32d3c5d2a6f7955bcc3190aeb115c4f8c6b3315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Thu, 19 Mar 2026 16:29:26 +0100 Subject: [PATCH] pl-api: update typdeoc config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/pl-api/typedoc.config.mjs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/packages/pl-api/typedoc.config.mjs b/packages/pl-api/typedoc.config.mjs index ce91934d2..f7e8f0a00 100644 --- a/packages/pl-api/typedoc.config.mjs +++ b/packages/pl-api/typedoc.config.mjs @@ -7,6 +7,32 @@ const config = { navigation: { includeCategories: true, }, + categorizeByGroup: true, + sort: ['kind', 'alphabetical'], + kindSortOrder: [ + 'Function', + 'Class', + 'Interface', + 'TypeAlias', + 'Variable', + 'Enum', + ], + intentionallyNotExported: [ + 'CreateStatusOptionalParams', + 'CreateStatusWithContent', + 'CreateStatusWithMedia', + 'EditStatusOptionalParams', + 'GetTrends', + 'LanguageParam', + 'OnlyEventsParam', + 'OnlyMediaParam', + 'Params', + 'PlApiClientConstructorOpts', + 'WithMutedParam', + 'WithRelationshipsParam', + ], + groupReferencesByType: true, + suppressCommentWarningsInDeclarationFiles: true, }; export default config;