From 0eb7f1972933c6046e47754144b2646cfbec6ad4 Mon Sep 17 00:00:00 2001 From: ematipico Date: Wed, 23 Aug 2023 15:03:12 +0000 Subject: [PATCH] [ci] format --- packages/integrations/cloudflare/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/integrations/cloudflare/README.md b/packages/integrations/cloudflare/README.md index f5a939b29e..523e7c2556 100644 --- a/packages/integrations/cloudflare/README.md +++ b/packages/integrations/cloudflare/README.md @@ -86,9 +86,9 @@ From an endpoint: ```js // src/pages/api/someFile.js export function get(context) { - const runtime = context.locals.runtime; - - return new Response("Some body"); + const runtime = context.locals.runtime; + + return new Response('Some body'); } ``` @@ -99,7 +99,7 @@ If you're using the `advanced` runtime, you can type the `runtime` object as fol ```ts // src/env.d.ts /// -import type { AdvancedRuntime } from "@astrojs/cloudflare" +import type { AdvancedRuntime } from '@astrojs/cloudflare'; declare namespace App { interface Locals extends AdvancedRuntime { @@ -116,7 +116,7 @@ If you're using the `directory` runtime, you can type the `runtime` object as fo ```ts // src/env.d.ts /// -import type { DirectoryRuntime } from "@astrojs/cloudflare" +import type { DirectoryRuntime } from '@astrojs/cloudflare'; declare namespace App { interface Locals extends DirectoryRuntime {