From b0b568e5898d6eb232308b013cdaf8f2befeda8a Mon Sep 17 00:00:00 2001 From: Kasper Seweryn Date: Sat, 23 Apr 2022 14:35:12 +0200 Subject: [PATCH] Rename AppModule to InitModule --- front/src/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'