index.ts
1 import type { Command } from '../../commands.js' 2 3 const mobile = { 4 type: 'local-jsx', 5 name: 'mobile', 6 aliases: ['ios', 'android'], 7 description: 'Show QR code to download the Claude mobile app', 8 load: () => import('./mobile.js'), 9 } satisfies Command 10 11 export default mobile