diff options
-rw-r--r-- | packages/integrations/cloudflare/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/cloudflare/README.md b/packages/integrations/cloudflare/README.md index e8a1db204..27e621853 100644 --- a/packages/integrations/cloudflare/README.md +++ b/packages/integrations/cloudflare/README.md @@ -117,7 +117,7 @@ import type { AdvancedRuntime } from '@astrojs/cloudflare'; type ENV = { SERVER_URL: string; -} +}; declare namespace App { interface Locals extends AdvancedRuntime<ENV> { @@ -138,7 +138,7 @@ import type { DirectoryRuntime } from '@astrojs/cloudflare'; type ENV = { SERVER_URL: string; -} +}; declare namespace App { interface Locals extends DirectoryRuntime<ENV> { |