Skip to content

Commit 82a13d6

Browse files
committed
chore(lib-dynamodb): export commands folder from index.ts
1 parent 39622a4 commit 82a13d6

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export * from "./BatchExecuteStatementCommand";
2+
export * from "./BatchGetCommand";
3+
export * from "./BatchWriteCommand";
4+
export * from "./DeleteCommand";
5+
export * from "./ExecuteStatementCommand";
6+
export * from "./ExecuteTransactionCommand";
7+
export * from "./GetCommand";
8+
export * from "./PutCommand";
9+
export * from "./QueryCommand";
10+
export * from "./ScanCommand";
11+
export * from "./TransactGetCommand";
12+
export * from "./TransactWriteCommand";
13+
export * from "./UpdateCommand";

lib/lib-dynamodb/src/index.ts

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
export * from "./commands/BatchExecuteStatementCommand";
2-
export * from "./commands/BatchGetCommand";
3-
export * from "./commands/BatchWriteCommand";
4-
export * from "./DynamoDBDocumentClient";
5-
export * from "./commands/DeleteCommand";
61
export * from "./DynamoDBDocument";
7-
export * from "./commands/ExecuteStatementCommand";
8-
export * from "./commands/ExecuteTransactionCommand";
9-
export * from "./commands/GetCommand";
10-
export * from "./commands/PutCommand";
11-
export * from "./commands/QueryCommand";
12-
export * from "./commands/ScanCommand";
13-
export * from "./commands/TransactGetCommand";
14-
export * from "./commands/TransactWriteCommand";
15-
export * from "./commands/UpdateCommand";
2+
export * from "./DynamoDBDocumentClient";
3+
export * from "./commands";

0 commit comments

Comments
 (0)