@cpmech/az-dynamo
Version:
Auxiliary Tools for DynamoDB
11 lines (10 loc) • 356 B
TypeScript
import { Iany } from '@cpmech/js2ts';
export interface IScanInput {
table: string;
index?: string;
skName: string;
skValue: string;
skValue2?: string;
op?: '<=' | '<' | '=' | '>' | '>=' | 'prefix' | 'between';
}
export declare const scan: ({ table, index, skName, skValue, skValue2, op, }: IScanInput) => Promise<Iany[]>;