diff --git a/libs/web-utils/src/lib/web-utils.ts b/libs/web-utils/src/lib/web-utils.ts index b2cb1a0..1caf373 100644 --- a/libs/web-utils/src/lib/web-utils.ts +++ b/libs/web-utils/src/lib/web-utils.ts @@ -60,10 +60,11 @@ export function getFirstBookFromString(string: string): BlueprintString | null { return null; } -interface ChildTreeBlueprintEnriched extends ChildTreeBlueprint { +interface ChildTreeBlueprintEnriched extends Omit { icons: Icon[]; } -export interface ChildTreeBlueprintBookEnriched extends ChildTreeBlueprintBook { +export interface ChildTreeBlueprintBookEnriched + extends Omit { icons?: Icon[]; children: ChildTreeEnriched; }