Rename AppModule to InitModule
This commit is contained in:
parent
071eb2fa35
commit
6a9b21a6a7
|
@ -10,13 +10,13 @@ declare global {
|
||||||
}
|
}
|
||||||
|
|
||||||
// App structure stuff
|
// App structure stuff
|
||||||
export interface AppModuleContext {
|
export interface InitModuleContext {
|
||||||
app: App
|
app: App
|
||||||
router: VueRouter
|
router: VueRouter
|
||||||
store: Store<any>
|
store: Store<any>
|
||||||
}
|
}
|
||||||
|
|
||||||
export type AppModule = (ctx: AppModuleContext) => void
|
export type InitModule = (ctx: InitModuleContext) => void
|
||||||
|
|
||||||
// Theme stuff
|
// Theme stuff
|
||||||
export type Theme = 'auto' | 'light' | 'dark'
|
export type Theme = 'auto' | 'light' | 'dark'
|
||||||
|
|
Loading…
Reference in New Issue