UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

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