mirror of
https://github.com/LukeHagar/sveltekit-adapters.git
synced 2025-12-06 20:57:49 +00:00
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
interface HandlerOptions {
|
|
req: any;
|
|
res: any;
|
|
log: (arg0: any) => void;
|
|
error: (arg0: any) => void;
|
|
}
|
|
|
|
export default function handler(options: HandlerOptions): any;
|