chore: More typescript FIXME's removed

This commit is contained in:
Tom Moor
2022-01-06 21:25:42 -08:00
parent 8d05c752ea
commit c6cc04cad8
58 changed files with 199 additions and 221 deletions

View File

@@ -1,3 +1,4 @@
import Router from "koa-router";
import { signin } from "@shared/utils/routeHelpers";
import { requireDirectory } from "@server/utils/fs";
@@ -6,7 +7,7 @@ interface AuthenicationProvider {
name: string;
enabled: boolean;
authUrl: string;
router: any;
router: Router;
}
const providers: AuthenicationProvider[] = [];