Recipe-app main

This commit is contained in:
2026-04-09 09:14:39 +02:00
commit 962f4e4be5
10015 changed files with 2445177 additions and 0 deletions
@@ -0,0 +1,6 @@
import './segment-boundary-trigger.css';
import type { SegmentBoundaryType, SegmentNodeState } from '../../../userspace/app/segment-explorer-node';
export declare function SegmentBoundaryTrigger({ nodeState, boundaries, }: {
nodeState: SegmentNodeState;
boundaries: Record<SegmentBoundaryType, string | null>;
}): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
import './segment-explorer.css';
export declare function PageSegmentTree({ page }: {
page: string;
}): import("react/jsx-runtime").JSX.Element;
export declare function InfoIcon(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,4 @@
export declare function SegmentSuggestion({ possibleExtension, missingGlobalError, }: {
possibleExtension: string;
missingGlobalError: boolean;
}): import("react/jsx-runtime").JSX.Element;