hono
Version:
Web framework built on Web Standards
13 lines (12 loc) • 309 B
TypeScript
/**
* Getting Bun Server Object for Bun adapters
* @module
*/
import type { Context } from '../../context';
/**
* Get Bun Server Object from Context
* @template T - The type of Bun Server
* @param c Context
* @returns Bun Server
*/
export declare const getBunServer: <T>(c: Context) => T | undefined;