mirror of
https://github.com/denoland/deno.git
synced 2024-11-05 09:04:41 -05:00
9 lines
317 B
TypeScript
9 lines
317 B
TypeScript
/// <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;
|