mirror of
https://github.com/strapi/strapi.git
synced 2025-11-01 18:33:55 +00:00
Fix lint
This commit is contained in:
parent
4f44013229
commit
c29b11186e
@ -45,7 +45,8 @@ export default class Dialect {
|
||||
return true;
|
||||
}
|
||||
|
||||
supportsOperator(operator?: string): boolean {
|
||||
supportsOperator(operator?: string): boolean;
|
||||
supportsOperator(): boolean {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import type { Database } from '../..';
|
||||
import type { Schema, Column, Index, IndexType, ForeignKey } from '../../schema/types';
|
||||
import type { Schema, Column, Index, ForeignKey } from '../../schema/types';
|
||||
import type { SchemaInspector } from '../dialect';
|
||||
|
||||
const SQL_QUERIES = {
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
import type { Knex } from 'knex';
|
||||
import {
|
||||
castArray,
|
||||
compact,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user