MCPcopy
hub / github.com/callstack/agent-device / isReadOnlyFindAction

Function isReadOnlyFindAction

src/daemon/selector-runtime.ts:527–533  ·  view source on GitHub ↗
(
  action: FindAction['kind'],
)

Source from the content-addressed store, hash-verified

525}
526
527function isReadOnlyFindAction(
528 action: FindAction['kind'],
529): action is 'exists' | 'wait' | 'get_text' | 'get_attrs' {
530 return (
531 action === 'exists' || action === 'wait' || action === 'get_text' || action === 'get_attrs'
532 );
533}

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected