UNPKG

eve

Version:

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

9 lines (8 loc) 378 B
import type { ResolvedJwtEcdsaAuthStrategy, RouteStrategyAuthenticationResult } from "#channel/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>;