/** * 内置系统命令 */ import type { SystemCommand } from '../types.js'; import { clearCommand } from './clear.js'; import { newCommand } from './new.js'; /** * 所有内置系统命令 */ export const builtinSystemCommands: SystemCommand[] = [ clearCommand, newCommand, ]; export { clearCommand, newCommand };