Builds a single-selection wizard step from a (possibly async) list of items.
quickpickStep({ items: () => [ toPickItem('feature', { label: 'Feature' }), toPickItem('fix', { label: 'Bug Fix' }), ],}); Copy
quickpickStep({ items: () => [ toPickItem('feature', { label: 'Feature' }), toPickItem('fix', { label: 'Bug Fix' }), ],});
Builds a multi-selection wizard step from a (possibly async) list of items.
quickpickStep({ canPickMany: true, items: () => [toPickItem('a', { label: 'A' }), toPickItem('b', { label: 'B' })],}); Copy
quickpickStep({ canPickMany: true, items: () => [toPickItem('a', { label: 'A' }), toPickItem('b', { label: 'B' })],});
Builds a single-selection wizard step from a (possibly async) list of items.