@sequelize/core
Version:
Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift, Snowflake’s Data Cloud, Db2, and IBM i. It features solid transaction support, relations, eager and lazy loading, read replication a
8 lines (7 loc) • 366 B
TypeScript
import { BaseSqlExpression, SQL_IDENTIFIER } from './base-sql-expression.js';
export declare class AssociationPath extends BaseSqlExpression {
readonly associationPath: readonly string[];
readonly attributeName: string;
protected readonly [SQL_IDENTIFIER]: 'associationPath';
constructor(associationPath: readonly string[], attributeName: string);
}