UNPKG

@rstore/nuxt-drizzle

Version:
24 lines (23 loc) 2.21 kB
import type { RestoreDrizzleConditionModifier, RstoreDrizzleBinaryOperator, RstoreDrizzleCondition, RstoreDrizzleConditionGroup, RstoreDrizzleTernaryOperator, RstoreDrizzleUnaryOperator } from './types.js'; export declare function eq(field: string, value: any): RstoreDrizzleBinaryOperator; export declare function ne(field: string, value: any): RstoreDrizzleBinaryOperator; export declare function gt(field: string, value: any): RstoreDrizzleBinaryOperator; export declare function lt(field: string, value: any): RstoreDrizzleBinaryOperator; export declare function gte(field: string, value: any): RstoreDrizzleBinaryOperator; export declare function lte(field: string, value: any): RstoreDrizzleBinaryOperator; export declare function inArray(field: string, value: any[]): RstoreDrizzleBinaryOperator; export declare function notInArray(field: string, value: any[]): RstoreDrizzleBinaryOperator; export declare function like(field: string, value: string): RstoreDrizzleBinaryOperator; export declare function notLike(field: string, value: string): RstoreDrizzleBinaryOperator; export declare function ilike(field: string, value: string): RstoreDrizzleBinaryOperator; export declare function notIlike(field: string, value: string): RstoreDrizzleBinaryOperator; export declare function arrayContains(field: string, value: any): RstoreDrizzleBinaryOperator; export declare function arrayContained(field: string, value: any): RstoreDrizzleBinaryOperator; export declare function arrayOverlaps(field: string, value: any[]): RstoreDrizzleBinaryOperator; export declare function between(field: string, value1: any, value2: any): RstoreDrizzleTernaryOperator; export declare function notBetween(field: string, value1: any, value2: any): RstoreDrizzleTernaryOperator; export declare function not(condition: RstoreDrizzleCondition): RestoreDrizzleConditionModifier; export declare function isNull(field: string): RstoreDrizzleUnaryOperator; export declare function isNotNull(field: string): RstoreDrizzleUnaryOperator; export declare function and(...conditions: RstoreDrizzleCondition[]): RstoreDrizzleConditionGroup; export declare function or(...conditions: RstoreDrizzleCondition[]): RstoreDrizzleConditionGroup;