mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-20 16:57:46 +00:00
18 lines
429 B
TypeScript
18 lines
429 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import { CommandKind, OpenDialogActionReturn, SlashCommand } from './types.js';
|
|
|
|
export const settingsCommand: SlashCommand = {
|
|
name: 'settings',
|
|
description: 'View and edit Qwen Code settings',
|
|
kind: CommandKind.BUILT_IN,
|
|
action: (_context, _args): OpenDialogActionReturn => ({
|
|
type: 'dialog',
|
|
dialog: 'settings',
|
|
}),
|
|
};
|