• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

victorperin / qr-scanner-cli / 3630546792

pending completion
3630546792

Pull #208

github

GitHub
Merge 4d6340e1d into 65b6913c7
Pull Request #208: chore(deps): bump qs from 6.10.1 to 6.11.0

19 of 24 branches covered (79.17%)

Branch coverage included in aggregate %.

73 of 75 relevant lines covered (97.33%)

5.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/cli/flags.ts
1
export type Flags = {
2
  clear?: boolean
3
  clipboard?: boolean
4
  open?: boolean
5
}
6

7
const flags = {
6✔
8
  clear: {
9
    boolean: true,
10
    default: false,
11
    alias: 'c',
12
    description: 'Clear output, just print the QR Code scan result',
13
  },
14
  clipboard: {
15
    boolean: true,
16
    default: false,
17
    alias: 'p',
18
    description: 'Copy the qr code value to your clipboard',
19
  },
20
  open: {
21
    boolean: true,
22
    default: false,
23
    alias: 'o',
24
    description: 'Open the qr code value in any browser or program if support it',
25
  },
26
}
27

28
export default flags
6✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc