Skip to content

Commit

Permalink
refactor: prefer import syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
BastiDood committed Jun 25, 2024
1 parent 7c000ee commit e6331b6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/app.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
declare namespace App {
interface Locals {
logger: import('pino').Logger;
}
import type { Logger } from 'pino';
interface Locals {
logger: Logger;
}
}

0 comments on commit e6331b6

Please sign in to comment.