linear-cmd
Version:
A GitHub CLI-like tool for Linear - manage issues, accounts, and more
14 lines (13 loc) • 455 B
JavaScript
import { CLI_NAME } from '../constants.js';
import { CommandNames, SubCommandNames } from '../definitions.js';
export const completionCommandDefinition = {
name: CommandNames.COMPLETION,
description: 'Manage shell completion scripts',
subcommands: [
{
name: SubCommandNames.COMPLETION_INSTALL,
description: 'Install shell completion',
examples: [`${CLI_NAME} completion install`]
}
]
};