UNPKG

dynoexpr-fixed

Version:

Expression builder for AWS.DynamoDB.DocumentClient

8 lines (7 loc) 460 B
import type { IBatchRequestInput, IDynoexprInput, IDynoexprOutput, ITransactRequestInput } from "./dynoexpr.d"; export type { IBatchRequestInput, IDynoexprInput, IDynoexprOutput, ITransactRequestInput, }; export interface IDynoexprArgs extends Partial<IDynoexprInput>, Partial<IBatchRequestInput>, Partial<ITransactRequestInput> { DocumentClient?: unknown; } declare function dynoexpr<T = IDynoexprOutput>(args: IDynoexprArgs): T; export default dynoexpr;