UNPKG

@ournet/news-data

Version:
10 lines (9 loc) 391 B
import DynamoDB = require('aws-sdk/clients/dynamodb'); import { DynamoItem } from "dynamo-item"; import { ArticleContent } from "@ournet/news-domain"; export declare type ArticleContentKey = { id: string; }; export declare class ArticleContentModel extends DynamoItem<ArticleContentKey, ArticleContent> { constructor(client: DynamoDB.DocumentClient, tableSuffix: string); }