export { ProjectionResult, parseProjection } from './projection-parser.js'; /** * Type representing a DynamoDB projection (list of attribute names). */ type Projection = string[]; export type { Projection };