next/typings/h3.d.ts

11 lines
275 B
TypeScript
Raw Normal View History

import type { H3Event, H3EventContext } from "h3";
import { IFicmas } from "@models/challenges/ficmas";
import { IUser } from "@models/user";
declare module "h3" {
interface H3EventContext {
currentUser?: IUser;
ficmasarray_raw?: IFicmas[];
chapterIndex: number;
}
}