-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: expose logger to plugin context
- Loading branch information
1 parent
8c3fa75
commit afc7f82
Showing
2 changed files
with
3 additions
and
1 deletion.
There are no files selected for viewing
Submodule cli
updated
from f1d681 to 6ae695
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import { App } from './app'; | ||
import { AppStorage } from './storage'; | ||
import { AppHttp } from './http'; | ||
import { AppLogger } from './logger'; | ||
|
||
declare global { | ||
const app: App; | ||
const storage: AppStorage; | ||
const http: AppHttp; | ||
const logger: AppLogger; | ||
} |