UNPKG

@odata2ts/odata-query-objects

Version:

Q-Objects are the magic sauce for the odata-query-builder and allow for renaming and type conversion

7 lines (6 loc) 295 B
import { QBasePath } from "./base/QBasePath"; export declare class QBooleanPath<ConvertedType = boolean> extends QBasePath<boolean, ConvertedType> { protected formatValue(value: boolean): string; isTrue(): import("..").QFilterExpression; isFalse(): import("..").QFilterExpression; }