index.ts
1 import type { Command } from '../../commands.js' 2 3 const files = { 4 type: 'local', 5 name: 'files', 6 description: 'List all files currently in context', 7 isEnabled: () => process.env.USER_TYPE === 'ant', 8 supportsNonInteractive: true, 9 load: () => import('./files.js'), 10 } satisfies Command 11 12 export default files