+ 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
+1 -1
View File
@@ -2,7 +2,7 @@
import { onMount } from "svelte";
const GRADUATION = new Date(1753797600000).valueOf();
let interval: NodeJS.Timer;
let interval: ReturnType<typeof setInterval>;
let timeTo = Math.abs(GRADUATION - Date.now().valueOf()) / 1000;
+2 -4
View File
@@ -1,5 +1,3 @@
import type { RequestHandler } from "./$types";
export const GET: RequestHandler = ({ url }) => {
export function GET() {
return new Response();
};
}