fix: Disable eslint no-var while overriding global

This commit is contained in:
Faruk AYDIN
2023-10-02 01:04:05 +02:00
parent 04a78ee0ba
commit 9d92509796

View File

@@ -2,6 +2,7 @@ import { Knex } from 'knex';
declare global {
declare namespace globalThis {
// eslint-disable-next-line no-var
var knex: Knex;
}
}