MCPcopy Index your code
hub / github.com/sourcebot-dev/sourcebot / isNavigable

Function isNavigable

packages/setupWizard/src/tabCheckbox.ts:100–102  ·  view source on GitHub ↗
(item: NormalizedChoice<Value> | Separator)

Source from the content-addressed store, hash-verified

98}
99
100function isNavigable<Value>(item: NormalizedChoice<Value> | Separator): item is NormalizedChoice<Value> {
101 return !Separator.isSeparator(item);
102}
103
104function isChecked<Value>(item: NormalizedChoice<Value> | Separator): item is NormalizedChoice<Value> {
105 return !Separator.isSeparator(item) && item.checked;

Callers 1

tabCheckbox.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected