UNPKG

soda-angular

Version:
12 lines (11 loc) 521 B
import { Column } from '../../column'; import { IWhereComponent } from '../where-component'; import { BetweenFunctionType } from './between-function-types'; import { WhereValue } from '../where-value'; export declare class Between<TValue extends BetweenFunctionType> implements IWhereComponent { readonly Column: Column; readonly From: WhereValue<TValue>; readonly To: WhereValue<TValue>; constructor(column: Column, from: WhereValue<TValue>, to: WhereValue<TValue>); toString(): string; }