UNPKG

@mbc-cqrs-serverless/core

Version:
11 lines (10 loc) 202 B
/** * Interface for DynamoDB composite key. * Used to identify items in the data store. */ export interface DetailKey { /** Partition key */ pk: string; /** Sort key */ sk: string; }