UNPKG
@melchyore/adonis-cache
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Cache package for AdonisJS V5
github.com/Melchyore/adonis-cache
Melchyore/adonis-cache
@melchyore/adonis-cache
/
build
/
src
/
Models
/
DynamoDB
/
index.d.ts
4 lines
(3 loc)
•
201 B
TypeScript
View Raw
1
2
3
4
import
type
{
DynamoDBContract
,
Table
}
from
'@ioc:Adonis/Addons/DynamoDB'
;
declare
const
DynamoDBModel
:
(
Client
:
DynamoDBContract
,
tableName
:
string
) =>
typeof
Table
;
export
default
DynamoDBModel
;