blob: be4515aff13ed9fd1443d81db4ac5becc3d04f8c (
plain)
1
2
3
4
5
6
7
|
import type { Context } from '../../context';
import type { Next } from '../../hono';
export declare type ServeStaticOptions = {
root?: string;
path?: string;
};
export declare const serveStatic: (options?: ServeStaticOptions) => (c: Context, next: Next) => Promise<Response | undefined>;
|