diff --git a/front/src/types.ts b/front/src/types.ts index bf767bb27..2653663a1 100644 --- a/front/src/types.ts +++ b/front/src/types.ts @@ -10,13 +10,13 @@ declare global { } // App structure stuff -export interface AppModuleContext { +export interface InitModuleContext { app: App router: VueRouter store: Store } -export type AppModule = (ctx: AppModuleContext) => void +export type InitModule = (ctx: InitModuleContext) => void // Theme stuff export type Theme = 'auto' | 'light' | 'dark'