8 lines
272 B
TypeScript
8 lines
272 B
TypeScript
import type { NextMiddleware, RequestData, FetchEventResult } from './types';
|
|
export declare function adapter(params: {
|
|
handler: NextMiddleware;
|
|
page: string;
|
|
request: RequestData;
|
|
}): Promise<FetchEventResult>;
|
|
export declare function enhanceGlobals(): void;
|