Rename AppModule to InitModule

This commit is contained in:
Kasper Seweryn 2022-04-23 14:35:12 +02:00 committed by Georg Krause
parent b0ae7490c4
commit b0b568e589
No known key found for this signature in database
GPG Key ID: 2970D504B2183D22
1 changed files with 2 additions and 2 deletions

View File

@ -10,13 +10,13 @@ declare global {
}
// App structure stuff
export interface AppModuleContext {
export interface InitModuleContext {
app: App
router: VueRouter
store: Store<any>
}
export type AppModule = (ctx: AppModuleContext) => void
export type InitModule = (ctx: InitModuleContext) => void
// Theme stuff
export type Theme = 'auto' | 'light' | 'dark'