make .withOverrides have a simplified result type

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2025-12-03 14:58:44 +01:00
parent d5db4cd62f
commit f3f84f1e4b
11 changed files with 77 additions and 192 deletions
-4
View File
@@ -67,12 +67,10 @@ const _default: OverridableFrontendPlugin<
'page:search': OverridableExtensionDefinition<{
config: {
noTrack: boolean;
} & {
path: string | undefined;
};
configInput: {
noTrack?: boolean | undefined;
} & {
path?: string | undefined;
};
output:
@@ -187,12 +185,10 @@ export const searchNavItem: OverridableExtensionDefinition<{
export const searchPage: OverridableExtensionDefinition<{
config: {
noTrack: boolean;
} & {
path: string | undefined;
};
configInput: {
noTrack?: boolean | undefined;
} & {
path?: string | undefined;
};
output: