function isIntentMandate
isIntentMandate(mandate: Mandate): mandate is IntentMandate

Type guard to check if a mandate is an IntentMandate

Uses the existing MandateTypeDetectorRegistry for consistent and extensible type detection across the entire codebase.

Parameters

mandate: Mandate
  • The mandate to check

Return Type

mandate is IntentMandate

True if the mandate is an IntentMandate

Usage

import { isIntentMandate } from ".";