Skip to content

Commit 9d7bec6

Browse files
committed
missing type in imports
1 parent 13eec19 commit 9d7bec6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/mikro-orm.middleware.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import {
66
Module,
77
type INestApplication,
88
Injectable,
9+
type MiddlewareConsumer,
910
type NestMiddleware,
10-
MiddlewareConsumer,
11-
NestModule,
11+
type NestModule,
1212
} from '@nestjs/common';
1313
import { Test, type TestingModule } from '@nestjs/testing';
1414
import request from 'supertest';

tests/mikro-orm.module-middleware.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import {
66
Module,
77
type INestApplication,
88
Injectable,
9+
type MiddlewareConsumer,
910
type NestMiddleware,
10-
MiddlewareConsumer,
11-
NestModule,
11+
type NestModule,
1212
} from '@nestjs/common';
1313
import { Test, type TestingModule } from '@nestjs/testing';
1414
import request from 'supertest';

0 commit comments

Comments
 (0)