deno.land / x / deno@v1.28.2 / cli / bench / testdata / npm / hono / dist / middleware / basic-auth / index.d.ts
123456789101112import type { Context } from '../../context';import type { Next } from '../../hono';export declare const basicAuth: (options: { username: string; password: string; realm?: string; hashFunction?: Function;}, ...users: { username: string; password: string;}[]) => (ctx: Context, next: Next) => Promise<void>;
Version Info