dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
11 lines (10 loc) • 369 B
TypeScript
import type { Extended } from './isExtension.js';
export declare const $PREPEND: unique symbol;
export type $PREPEND = typeof $PREPEND;
export type PREPEND<VALUE> = Extended<{
[$PREPEND]: VALUE;
}>;
export declare const $prepend: <VALUE>(value: VALUE) => PREPEND<VALUE>;
export declare const isPrepending: (input: unknown) => input is {
[$PREPEND]: unknown;
};