feat: added input types for the config to the extensions

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2024-07-24 14:36:22 +02:00
parent b424956a35
commit 0ad542cbc7
26 changed files with 300 additions and 116 deletions
+16 -7
View File
@@ -23,13 +23,22 @@ const _default: BackstagePlugin<
export default _default;
// @alpha (undocumented)
export const techDocsSearchResultListItemExtension: ExtensionDefinition<{
lineClamp: number;
noTrack: boolean;
asListItem: boolean;
asLink: boolean;
title?: string | undefined;
}>;
export const techDocsSearchResultListItemExtension: ExtensionDefinition<
{
lineClamp: number;
noTrack: boolean;
asListItem: boolean;
asLink: boolean;
title?: string | undefined;
},
{
lineClamp: number;
noTrack: boolean;
asListItem: boolean;
asLink: boolean;
title?: string | undefined;
}
>;
// (No @packageDocumentation comment for this package)
```