UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

9 lines (8 loc) 389 B
import type { ResolvedJwtEcdsaAuthStrategy, RouteStrategyAuthenticationResult } from "#runtime/governance/auth/types.js"; /** * Verifies one bearer token against a resolved ECDSA JWT strategy. */ export declare function authenticateJwtEcdsaStrategy(input: { readonly token: string; readonly strategy: ResolvedJwtEcdsaAuthStrategy; }): Promise<RouteStrategyAuthenticationResult>;