mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 14:30:44 +00:00
22 lines
707 B
TypeScript
22 lines
707 B
TypeScript
export type {
|
|
InboundImplicitMentionKind,
|
|
InboundMentionDecision,
|
|
InboundMentionFacts,
|
|
InboundMentionPolicy,
|
|
MentionGateParams,
|
|
MentionGateResult,
|
|
MentionGateWithBypassParams,
|
|
MentionGateWithBypassResult,
|
|
ResolveInboundMentionDecisionFlatParams,
|
|
ResolveInboundMentionDecisionNestedParams,
|
|
ResolveInboundMentionDecisionParams,
|
|
} from "../channels/mention-gating.js";
|
|
export {
|
|
implicitMentionKindWhen,
|
|
resolveInboundMentionDecision,
|
|
// @deprecated Prefer `resolveInboundMentionDecision({ facts, policy })`.
|
|
resolveMentionGating,
|
|
// @deprecated Prefer `resolveInboundMentionDecision({ facts, policy })`.
|
|
resolveMentionGatingWithBypass,
|
|
} from "../channels/mention-gating.js";
|