Skip to content

Commit 5268399

Browse files
committed
fix: exports
1 parent 7f30d36 commit 5268399

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nest-onetable",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"private": false,
55
"license": "MIT",
66
"repository": {

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './module';
2+
export * from './decorators';

src/module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import type { TableConstructorParams } from 'dynamodb-onetable/dist/cjs/Table';
44
import { paramsSymbol, tableSymbol } from './decorators';
55

66
type TableParamsProvider = Omit<FactoryProvider<TableConstructorParams<any>>, 'provide'> | TableConstructorParams<any>;
7-
type OnetableModuleOptions = TableParamsProvider & {
7+
export type OnetableModuleOptions = TableParamsProvider & {
88
global?: boolean;
99
};
1010

0 commit comments

Comments
 (0)