Просмотр исходного кода

fix import line for dependency injection

Yuki Takei 1 год назад
Родитель
Сommit
3d81df7035
1 измененных файлов с 3 добавлено и 2 удалено
  1. 3 2
      apps/slackbot-proxy/src/controllers/term.ts

+ 3 - 2
apps/slackbot-proxy/src/controllers/term.ts

@@ -1,5 +1,6 @@
-import type { PlatformRouter } from '@tsed/common';
-import { Controller } from '@tsed/common';
+/* eslint-disable @typescript-eslint/consistent-type-imports */
+import { Controller, PlatformRouter } from '@tsed/common';
+/* eslint-enable @typescript-eslint/consistent-type-imports */
 import type { Request, Response } from 'express';
 
 const isOfficialMode = process.env.OFFICIAL_MODE === 'true';