blob: 5ff60c4ca9704bf0f9ca71c8b6f4f8fc1275c0e4 (
plain)
1
2
3
4
5
6
7
8
9
|
/// <reference types="@cloudflare/workers-types" />
import type { Handler } from '../../hono';
export declare type ServeStaticOptions = {
root?: string;
path?: string;
manifest?: object | string;
namespace?: KVNamespace;
};
export declare const serveStatic: (options?: ServeStaticOptions) => Handler;
|