UNPKG

betterddb

Version:

A definition-based DynamoDB wrapper library that provides a schema-driven and fully typesafe DAL.

3 lines 276 B
export type Operator = "==" | "!=" | "<" | "<=" | ">" | ">=" | "begins_with" | "between" | "contains"; export declare function getOperatorExpression(operator: Operator, nameKey: string, valueKey: string, secondValueKey?: string): string; //# sourceMappingURL=operator.d.ts.map