Hey, when I try to make a select statement, I get this error: Expected 0 arguments, but got 1.ts(2554) On runtime it works but it still shows this error. Is this a known problem? ``` (alias) getTableColumns<SQLiteTableWithColumns<{ name: "merchant_customer"; schema: undefined; columns: { id: SQLiteColumn<{ name: "id"; tableName: "merchant_customer"; dataType: "string"; columnType: "SQLiteText"; data: string; driverParam: string; ... 8 more ...; generated: undefined; }, {}, { ...; }>; merchantId: SQLiteColumn<...>; customerId: SQLiteColumn<...>; mollieCustomerId: SQLiteColumn<...>; createdAt: SQLiteColumn<...>; }; dialect: "sqlite"; }>>(table: SQLiteTableWithColumns<...>): { ...; } import getTableColumns ```