diff --git a/packages/plantae/README.md b/packages/plantae/README.md index 958ec95..f12e435 100644 --- a/packages/plantae/README.md +++ b/packages/plantae/README.md @@ -132,21 +132,3 @@ export default function AuthPlugin(): Plugin<{ - Plugins should have a clear name with `plantae-plugin-` prefix. - Include `plantae-plugin` keywords in package.json. - -## TODO - -- Make 100% compatibility with Request & Response API. - -Currently implemented: - -````ts -export type AdapterRequest = Pick< - Request, - "body" | "headers" | "method" | "url" | "signal" ->; - -export type AdapterResponse = Pick< - Response, - "body" | "headers" | "ok" | "status" | "statusText" | "url" ->;``` -````