···11# Fetchable
22+33+A standard type interface for request entry-point ES modules.
44+55+Platforms, runtimes, frameworks, and other tools may implement or accept this interface
66+in order to interoperate with one another.
77+88+```ts
99+interface Fetchable {
1010+ default: {
1111+ fetch(request: Request, ...extra: unknown[]): Promise<Response> | Response;
1212+ };
1313+}
1414+```
1515+1616+See the spec at [fetchable.org](https://fetchable.org) for the full definition and more details.