UNPKG

@blueleader07/typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

17 lines (16 loc) 572 B
export declare class BeginsWith { attribute: string; value: string; } export declare class DynamoFindOptions { index?: string; where?: any; beginsWith?: BeginsWith; limit?: number; sort?: string; exclusiveStartKey?: string; static toAttributeNames(findOptions: DynamoFindOptions): any; static toKeyConditionExpression(findOptions: DynamoFindOptions): string | undefined; static appendBeginsWith(expression: string, beginsWith?: BeginsWith): string; static toExpressionAttributeValues(findOptions: DynamoFindOptions): any; }