UNPKG

dynamodb-toolbox

Version:

Lightweight and type-safe query builder for DynamoDB and TypeScript.

9 lines (8 loc) 237 B
/** * String attribute path. Used in Conditions and Projections. */ export type StrPath = string; /** * Parsed attribute path. Must NOT contain escaped string (the must be de-escaped). */ export type ArrayPath = (string | number)[];