This repository has been archived on 2026-04-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
claude-code-2026-04-02/src/commands/config/index.ts
Osman Mehmood b7a82da0be leak init
2026-03-31 15:00:46 +05:00

12 lines
247 B
TypeScript

import type { Command } from '../../commands.js'
const config = {
aliases: ['settings'],
type: 'local-jsx',
name: 'config',
description: 'Open config panel',
load: () => import('./config.js'),
} satisfies Command
export default config