UNPKG

soda-angular

Version:
11 lines (10 loc) 447 B
import { Column } from '../../column'; import { IWhereComponent } from '../where-component'; import { InFunctionType } from './in-function-types'; import { WhereValue } from '../where-value'; export declare class In<TValue extends InFunctionType> implements IWhereComponent { readonly Column: Column; readonly Values: WhereValue<TValue>[]; constructor(column: Column, values: WhereValue<TValue>[]); toString(): string; }