ddb-table
Version:
Strongly typed library for querying and modeling DynamoDB documents.
10 lines (9 loc) • 326 B
TypeScript
export type ExpressionAttributesMap<T> = {
[key: string]: T;
};
export default class ExpressionAttributes<T> {
private readonly attributesMap;
constructor(init?: ExpressionAttributesMap<T>);
protected setValue(requestedKey: string, value: T): string;
serialize(): ExpressionAttributesMap<T> | undefined;
}