Started documenting code

This commit is contained in:
Kevin FEDYNA
2025-01-22 00:54:43 +01:00
parent 54f4a83590
commit 3ce1273455
9 changed files with 72 additions and 24 deletions
+9
View File
@@ -1,4 +1,10 @@
import { type RegularTagNode, type TextNode } from "@melvdouc/xml-parser";
import { AsyncRoute } from "$fresh/src/server/types.ts";
export interface State {
isAuthenticated: boolean;
session: CasContent;
}
export interface AppProperties {
name: string;
@@ -48,3 +54,6 @@ export interface LoginJWT {
}
export type EmptyObject = Record<string | number | symbol, never>;
// deno-lint-ignore no-explicit-any
export type Route = AsyncRoute<any, State>;