Skip to content

Commit

Permalink
consolidate exports
Browse files Browse the repository at this point in the history
  • Loading branch information
frankleng committed Jun 10, 2023
1 parent cc6b13d commit e10c821
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
export * from "@aws-sdk/client-dynamodb";
export type * from "@aws-sdk/client-dynamodb";
export type * from "./types";

export type * from "./types";
export * from "./constants";

export { DB_RETURN_VALUE } from "./constants";

export { marshall, unmarshall } from "@aws-sdk/util-dynamodb";

// client, utils, constants
export { setClient, ddbClientInstance, getDdbClient } from "./client";
export { consoleError, consoleLog, chunkList, batchWriteTable } from "./utils";
export { DEFAULT_MARSHALL_OPTIONS } from "./constants";
export { DEFAULT_MARSHALL_OPTIONS, DB_RETURN_VALUE } from "./constants";

// write, batch write
export { putTableRow, delTableRow } from "./write";
Expand Down

0 comments on commit e10c821

Please sign in to comment.