@blueleader07/typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
12 lines (11 loc) • 385 B
TypeScript
export declare class DynamoOrder {
static ASC: string;
static DESC: string;
static DEFAULT_DIRECTION: string;
direction: string;
property: string;
constructor(property: string, direction?: string);
static by(property: string, direction?: string): DynamoOrder;
static asc(property: string): DynamoOrder;
static desc(property: string): DynamoOrder;
}