@meshwatch/backend-core
Version:
Meshwatch backend core services.
6 lines (5 loc) • 461 B
TypeScript
import DynamoDB, { DocumentClient } from 'aws-sdk/clients/dynamodb';
import { DynamoMonitorStorage, DynamoUserStorage } from '../../src/models';
export declare function populateMonitors(monitorStorage: DynamoMonitorStorage): Promise<void>;
export declare function populateUserInfo(userInfoStorage: DynamoUserStorage): Promise<void>;
export declare function populateDynamoTestData(dynamoDB: DynamoDB, dynamoDBDocumentClient: DocumentClient): Promise<void>;