4 lines
265 B
TypeScript
4 lines
265 B
TypeScript
import type { Context } from '../../context';
|
|
import type { AnyLocalHook, MaybePromise } from '../../types';
|
|
export declare const createNativeStaticHandler: (handle: unknown, hooks: AnyLocalHook, set?: Context["set"]) => (() => MaybePromise<Response>) | undefined;
|