component-dbs-core
Version:
DTO objects shared among device backend
21 lines (20 loc) • 992 B
TypeScript
/// <reference types="jest" />
import { EnvironmentService, DynamodbService, AppSyncClient } from '../../common_services';
import { DeviceService, DeviceVerification } from '../../devices';
export declare const getDeviceUuid: jest.Mock<any, any>;
export declare class DepositService {
private readonly dbService;
private readonly envServiceDp;
private readonly deviceServiceDp;
private readonly deviceVerifyDp;
private readonly appsyncClientDp;
static getDeposits: jest.Mock<any, any>;
static getDeposit: jest.Mock<any, any>;
static onDepositStream: jest.Mock<any, any>;
static onDepositUpdate: jest.Mock<any, any>;
constructor(dbService: DynamodbService, envServiceDp: EnvironmentService, deviceServiceDp: DeviceService, deviceVerifyDp: DeviceVerification, appsyncClientDp: AppSyncClient);
getDeposits: jest.Mock<any, any>;
getDeposit: jest.Mock<any, any>;
onDepositStream: jest.Mock<any, any>;
onDepositUpdate: jest.Mock<any, any>;
}