UNPKG

@smallprod/models

Version:
10 lines (9 loc) 290 B
import Query, { WhereAttribute, WhereKeyWord } from './query'; export default abstract class WhereQuery extends Query { protected wheres: (WhereAttribute | WhereKeyWord)[]; and: () => this; or: () => this; not: () => this; group: () => this; endGroup: () => this; }