buroventures-harald-code
Version:
Harald Code - AI-powered coding assistant CLI
16 lines (15 loc) • 543 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import React from 'react';
import { LoadedSettings, SettingScope } from '../../config/settings.js';
import { EditorType } from 'buroventures-harald-code-core';
interface EditorDialogProps {
onSelect: (editorType: EditorType | undefined, scope: SettingScope) => void;
settings: LoadedSettings;
onExit: () => void;
}
export declare function EditorSettingsDialog({ onSelect, settings, onExit, }: EditorDialogProps): React.JSX.Element;
export {};