eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
9 lines (8 loc) • 361 B
TypeScript
import type { ResolvedOidcAuthStrategy, RouteStrategyAuthenticationResult } from "#channel/auth/types.js";
/**
* Verifies one bearer token against a resolved OIDC strategy.
*/
export declare function authenticateOidcStrategy(input: {
readonly token: string;
readonly strategy: ResolvedOidcAuthStrategy;
}): Promise<RouteStrategyAuthenticationResult>;