UNPKG

@sequeljs/ast

Version:

A SQL AST manager for JavaScript

18 lines 672 B
import Node from './Node'; import type Relation from '../interfaces/Relation'; import type JoinSource from './JoinSource'; import type SQLLiteral from './SQLLiteral'; export default class DeleteStatement extends Node { key: any; limit: any; offset: any; orders: any[]; left: JoinSource | Relation | SQLLiteral | null; right: any[]; get relation(): JoinSource | Relation | SQLLiteral | null; set relation(val: JoinSource | Relation | SQLLiteral | null); get wheres(): any[]; set wheres(val: any[]); constructor(relation?: JoinSource | Relation | SQLLiteral | null, wheres?: any[]); } //# sourceMappingURL=DeleteStatement.d.ts.map