Specification for the Fetchable module interface
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: add a basic readme

+15
+15
README.md
··· 1 1 # Fetchable 2 + 3 + A standard type interface for request entry-point ES modules. 4 + 5 + Platforms, runtimes, frameworks, and other tools may implement or accept this interface 6 + in order to interoperate with one another. 7 + 8 + ```ts 9 + interface Fetchable { 10 + default: { 11 + fetch(request: Request, ...extra: unknown[]): Promise<Response> | Response; 12 + }; 13 + } 14 + ``` 15 + 16 + See the spec at [fetchable.org](https://fetchable.org) for the full definition and more details.