···2121 * The name to say "Hello" to.
2222 */
2323 @property()
2424- name = 'World'
2424+ name = 'World'
25252626 /**
2727 * The number of times the button has been clicked.
2828 */
2929 @property({ type: Number })
3030- count = 1
3030+ count = 1
31313232 render() {
3333 return html`
···99import type { CliOptions } from './cli-api'
10101111type NestedOption<T, V = Extract<T, Record<string, any>>> = V extends
1212- | never
1313- | RegExp
1414- | unknown[]
1212+| never
1313+| RegExp
1414+| unknown[]
1515 ? never
1616 : V
1717