UNPKG

dynamodb-toolbox

Version:

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

11 lines (10 loc) 334 B
import type { Extended } from './isExtension.js'; export declare const $SET: unique symbol; export type $SET = typeof $SET; export declare const $set: <VALUE>(value: VALUE) => SET<VALUE>; export declare const isSetting: (input: unknown) => input is { [$SET]: unknown; }; export type SET<VALUE> = Extended<{ [$SET]: VALUE; }>;