Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: dual module export #607

Merged
merged 10 commits into from
Oct 18, 2023
Prev Previous commit
Next Next commit
fix: update extensions on missing files
  • Loading branch information
antstanley committed Oct 18, 2023
commit b74fd584f024430d2c31fb3effd15ce574079ac7
2 changes: 1 addition & 1 deletion src/__tests__/entity.delete.unit.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Entity, Table } from '..'
import { Entity, Table } from '../index.js'
import { DocumentClient } from './bootstrap.test.js'

const TestTable = new Table({
Expand Down
4 changes: 2 additions & 2 deletions src/__tests__/type-infering.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import {
DeleteOptions,
UpdateOptions,
ConditionsOrFilters, AttributeMap,
} from 'classes/Entity'
} from 'classes/Entity/types.js'

import { Table, Entity } from '../index'
import { Table, Entity } from '../index.js'
import { ReturnConsumedCapacity, ReturnItemCollectionMetrics, Select } from '@aws-sdk/client-dynamodb'
import {
DeleteCommandInput,
Expand Down
Loading