blob: 5b13b48166c4fd77f99fa7797185bb4cd5c7fbc6 (
plain)
1
2
3
4
5
6
7
|
import type { Context } from '../../context';
import type { Next } from '../../hono';
export declare const jwt: (options: {
secret: string;
cookie?: string;
alg?: string;
}) => (ctx: Context, next: Next) => Promise<void>;
|