UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

16 lines (15 loc) 437 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { LoadedSettings } from '../config/settings.js'; import { type Config } from 'buroventures-harald-code-core'; interface AppProps { config: Config; settings: LoadedSettings; startupWarnings?: string[]; version: string; } export declare const AppWrapper: (props: AppProps) => import("react/jsx-runtime").JSX.Element; export {};