Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix invalid ts import style of lib/operators #13797

Merged
merged 2 commits into from Dec 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion types/index.d.ts
@@ -1,6 +1,6 @@
import DataTypes = require("./lib/data-types");
import Deferrable = require("./lib/deferrable");
import * as Op from "../lib/operators";
import Op = require("../lib/operators");
import QueryTypes = require("./lib/query-types");
import TableHints = require("./lib/table-hints");
import IndexHints = require("./lib/index-hints");
Expand Down
2 changes: 1 addition & 1 deletion types/lib/model.d.ts
Expand Up @@ -9,7 +9,7 @@ import { Sequelize, SyncOptions } from './sequelize';
import { LOCK, Transaction } from './transaction';
import { Col, Fn, Literal, Where } from './utils';
import { SetRequired } from '../type-helpers/set-required'
import * as Op from '../../lib/operators';
import Op = require('../../lib/operators');

export interface Logging {
/**
Expand Down