fix(migration): update import statement to use type imports for TypeORM

This commit is contained in:
0xsysr3ll
2025-04-21 19:45:46 +02:00
parent 2f0a11bafe
commit 3a58649122
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import { MigrationInterface, QueryRunner } from 'typeorm';
import type { MigrationInterface, QueryRunner } from 'typeorm';
export class AddPlexProfilesSupport1745254842580 implements MigrationInterface {
name = 'AddPlexProfilesSupport1745254842580';

View File

@@ -1,4 +1,4 @@
import { MigrationInterface, QueryRunner } from 'typeorm';
import type { MigrationInterface, QueryRunner } from 'typeorm';
export class AddPlexProfilesSupport1745254842580 implements MigrationInterface {
name = 'AddPlexProfilesSupport1745254842580';