@thisisagile/easy
Version:
Straightforward library for building domain-driven microservice architectures
12 lines (11 loc) • 403 B
TypeScript
import { Query } from '../data/Query';
import { Table } from './Table';
import { Join } from './Join';
import { List } from '../types/List';
import { Clause } from './Clause';
export declare class SqlQuery implements Query {
protected table: Table | Join;
readonly clauses: List<Clause>;
constructor(table: Table | Join, clauses?: List<Clause>);
where: (...clauses: Clause[]) => this;
}