UNPKG

@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

12 lines (11 loc) 508 B
import { BaseSqlExpression, SQL_IDENTIFIER } from './base-sql-expression.js'; /** * Used to represent a value that will either be escaped to a literal, or a bind parameter. * You do not need to use this function directly, it will be used automatically when you interpolate parameters * in a template string tagged with {@link sql}. */ export declare class Value extends BaseSqlExpression { readonly value: unknown; protected readonly [SQL_IDENTIFIER]: 'value'; constructor(value: unknown); }