UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

16 lines 387 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { CommandKind } from './types.js'; export const privacyCommand = { name: 'privacy', description: 'display the privacy notice', kind: CommandKind.BUILT_IN, action: () => ({ type: 'dialog', dialog: 'privacy', }), }; //# sourceMappingURL=privacyCommand.js.map