build: Upgrade lint related packages (#7790)

This commit is contained in:
Csaba Tuncsik
2023-11-27 09:11:52 +01:00
committed by GitHub
parent d2c18c5727
commit 152883eed1
22 changed files with 149 additions and 303 deletions

View File

@@ -1,4 +1,5 @@
import { QueryRunner, TableIndex } from 'typeorm';
import type { QueryRunner } from 'typeorm';
import { TableIndex } from 'typeorm';
import LazyPromise from 'p-lazy';
abstract class IndexOperation extends LazyPromise<void> {

View File

@@ -1,5 +1,5 @@
import type { TableForeignKeyOptions, TableIndexOptions } from 'typeorm';
import { Table, QueryRunner, TableColumn } from 'typeorm';
import type { TableForeignKeyOptions, TableIndexOptions, QueryRunner } from 'typeorm';
import { Table, TableColumn } from 'typeorm';
import LazyPromise from 'p-lazy';
import { Column } from './Column';