+ Add in ESLint support, with TS and Svelte included.
~ Resolve typing issues in both countdown, and in the healthcheck endpoint
This commit is contained in:
2024-04-19 16:48:42 +10:00
parent f4ef664f0b
commit 97aa6cd24e
7 changed files with 55 additions and 16 deletions
+2 -4
View File
@@ -1,5 +1,3 @@
import type { RequestHandler } from "./$types";
export const GET: RequestHandler = ({ url }) => {
export function GET() {
return new Response();
};
}