π File detail
utils/bash/specs/alias.ts
π§© .tsπ 15 linesπΎ 313 bytesπ text
β Back to All Filesπ― Use case
This file lives under βutils/β, which covers cross-cutting helpers (shell, tempfiles, settings, messages, process input, β¦). It primarily provides a default export (component, class, or entry function). It composes internal code from registry (relative imports).
Generated from folder role, exports, dependency roots, and inline comments β not hand-reviewed for every path.
π§ Inline summary
import type { CommandSpec } from '../registry.js' const alias: CommandSpec = { name: 'alias', description: 'Create or list command aliases',
π€ Exports (heuristic)
default
π₯οΈ Source preview
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