11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
|
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;
|
||
|
}
|
||
|
}
|