UNPKG

dynamodb-toolbox

Version:

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

2 lines (1 loc) 114 B
export type If<CONDITION extends boolean | undefined, THEN, ELSE = never> = CONDITION extends true ? THEN : ELSE;