blob: 36cd766f3f39d366ce7320b5f5c4faaa709bd930 (
plain)
1
2
3
4
5
|
import type { ServeStaticOptions } from './serve-static';
declare const module: (options?: ServeStaticOptions) => import("../../hono").Handler<string, {
[x: string]: any;
}>;
export { module as serveStatic };
|