+
+
Counter: {{ counter || '-' }}
+
+
+
+
+
diff --git a/playground/server/trpc/index.ts b/playground/server/trpc/index.ts
index 5e01569..b1cebd8 100644
--- a/playground/server/trpc/index.ts
+++ b/playground/server/trpc/index.ts
@@ -1,5 +1,8 @@
import * as trpc from '@trpc/server'
+import type { inferAsyncReturnType } from '@trpc/server'
import { z } from 'zod'
+import type { CompatibilityEvent } from 'h3'
+import { useCookies } from 'h3'
const baseURL = 'https://jsonplaceholder.typicode.com'
@@ -12,7 +15,7 @@ const TodoShape = z.object({
export type Todo = z.infer