From e8843ded5bf1f3d97b735ffe8f8553de46f9b18b Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 2 Jun 2023 15:01:04 -0500 Subject: Fix a bunch of type errors and add a type-check to the github workflows (#837) * Add yarn type-check * Rename to yarn typecheck * Fix a collection of type errors * Add typecheck to automated tests * add `dist` to exluded folders tsconfig --------- Co-authored-by: Ansh Nanda --- src/lib/api/api-polyfill.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/api/api-polyfill.ts') diff --git a/src/lib/api/api-polyfill.ts b/src/lib/api/api-polyfill.ts index 7c38625a2..ea1d97598 100644 --- a/src/lib/api/api-polyfill.ts +++ b/src/lib/api/api-polyfill.ts @@ -11,7 +11,7 @@ export function doPolyfill() { interface FetchHandlerResponse { status: number headers: Record - body: ArrayBuffer | undefined + body: any } async function fetchHandler( -- cgit 1.4.1