From 08ee35155579889e6c41f8abe9340d0e5f803111 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 22 Apr 2024 21:03:12 +0100 Subject: [PATCH] chore: lint --- src/core/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/server.ts b/src/core/server.ts index 2a4901a68..4d8bd90db 100644 --- a/src/core/server.ts +++ b/src/core/server.ts @@ -78,7 +78,7 @@ export function fetch(path: string, options?: RequestInit) { return _fetch(url(path), options) } -export const $fetch = (function(path: string, options?: FetchOptions) { +export const $fetch = (function (path: string, options?: FetchOptions) { return _$fetch(url(path), options) }) as typeof globalThis['$fetch']