Files
vat-api.eu/node_modules/srvx/dist/adapters/generic.d.mts
2026-02-13 22:02:30 +01:00

8 lines
302 B
TypeScript

import { Server, ServerOptions } from "../types.mjs";
//#region src/adapters/generic.d.ts
declare const FastURL: typeof globalThis.URL;
declare const FastResponse: typeof globalThis.Response;
declare function serve(options: ServerOptions): Server;
//#endregion
export { FastResponse, FastURL, serve };