mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 20:56:58 +10:00
15 lines
313 B
TypeScript
15 lines
313 B
TypeScript
import type { CommandSpec } from '../registry.js'
|
|
|
|
const alias: CommandSpec = {
|
|
name: 'alias',
|
|
description: 'Create or list command aliases',
|
|
args: {
|
|
name: 'definition',
|
|
description: 'Alias definition in the form name=value',
|
|
isOptional: true,
|
|
isVariadic: true,
|
|
},
|
|
}
|
|
|
|
export default alias
|