The interface that defines the Cloudflare Worker fetch handler.
A method that is compatible with the Cloudflare Worker Fetch Handler and can be exported to handle Cloudflare Worker fetch requests.
Example
import { Application } from "@oak/oak"; const app = new Application(); app.use((ctx) => { ctx.response.body = "hello world!"; }); export default { fetch: app.fetch };