UNPKG

lemon-core

Version:
22 lines (21 loc) 575 B
/** * file: `dynamodb-value.ts` * - originally inspired via https://github.com/ironSource/node-dynamodb-value * - refactoring for typescript error. * * * @author Steve Jung <steve@lemoncloud.io> * @date 2019-11-20 initial version via backbone * * @copyright (C) 2019 LemonCloud Co Ltd. - All Rights Reserved. */ /** * converts a ddb object into a js object * */ export declare function toJavascript(data: any, mergeInto?: any): any; /** * converts a js object into a ddb object * */ export declare function toDDB(data: any, mergeInto?: any): any;