Skip to content

Commit

Permalink
feat: expose logger to plugin context
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalygashkov committed Dec 1, 2024
1 parent 8c3fa75 commit afc7f82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/cli
Submodule cli updated from f1d681 to 6ae695
2 changes: 2 additions & 0 deletions packages/api/types/global.d.ts
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;
}

0 comments on commit afc7f82

Please sign in to comment.