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