UNPKG
dynolink
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
A TypeScript ORM for DynamoDB
github.com/vmanick-bayer/dynolink
vmanick-bayer/dynolink
dynolink
/
dist
/
types
/
src
/
infra
/
table-definitions.d.ts
7 lines
(6 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
CreateTableCommandInput
}
from
"@aws-sdk/client-dynamodb"
;
/** * Generates a unified CreateTableCommandInput for multiple entities. *
@param
entities
*/
export
declare
function
generateUnifiedCreateTableInput
(
entities
: (
new
() =>
any
)[]
):
CreateTableCommandInput
;