From fee7e5597a60492688b060182a924fda77e76bdb Mon Sep 17 00:00:00 2001 From: juliusmarminge Date: Tue, 23 Apr 2024 09:36:12 +0200 Subject: [PATCH] chore: formatting --- packages/nextjs/src/index.ts | 8 ++++++-- packages/nuxt/src/index.ts | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/packages/nextjs/src/index.ts b/packages/nextjs/src/index.ts index e856c6f..e50af65 100644 --- a/packages/nextjs/src/index.ts +++ b/packages/nextjs/src/index.ts @@ -1,5 +1,9 @@ -import type { ServerClientOptions, StrictOptions } from "@t3-oss/env-core"; -import { type CreateEnv, createEnv as createEnvCore } from "@t3-oss/env-core"; +import type { + CreateEnv, + ServerClientOptions, + StrictOptions, +} from "@t3-oss/env-core"; +import { createEnv as createEnvCore } from "@t3-oss/env-core"; import type { ZodType } from "zod"; const CLIENT_PREFIX = "NEXT_PUBLIC_" as const; diff --git a/packages/nuxt/src/index.ts b/packages/nuxt/src/index.ts index 9fadb25..5230829 100644 --- a/packages/nuxt/src/index.ts +++ b/packages/nuxt/src/index.ts @@ -1,5 +1,9 @@ -import { type CreateEnv, createEnv as createEnvCore } from "@t3-oss/env-core"; -import type { ServerClientOptions, StrictOptions } from "@t3-oss/env-core"; +import type { + CreateEnv, + ServerClientOptions, + StrictOptions, +} from "@t3-oss/env-core"; +import { createEnv as createEnvCore } from "@t3-oss/env-core"; import type { ZodType } from "zod"; const CLIENT_PREFIX = "NUXT_PUBLIC_" as const;