UNPKG

@blueleader07/typeorm

Version:

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

16 lines (15 loc) 556 B
export declare enum UpdateExpressionType { ADD = "ADD", DELETE = "DELETE", REMOVE = "REMOVE", SET = "SET" } export declare class DynamoUpdateExpressionOptions { addValues?: any; setValues?: any; where: any; static toAttributeNames(options: DynamoUpdateExpressionOptions): any; static toExpressionAttributeValues(options: DynamoUpdateExpressionOptions): any; static toUpdateExpression(options: DynamoUpdateExpressionOptions): string; static _toUpdateExpression(values: any, type: UpdateExpressionType): string; }