source dump of claude code
at main 11 lines 282 B view raw
1import type { Command } from '../../commands.js' 2 3const 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 11export default mobile