UNPKG

component-dbs-core

Version:

DTO objects shared among device backend

22 lines (21 loc) 1.01 kB
/// <reference types="jest" /> import { EnvironmentService } from '../../common_services/config'; import { DynamodbService } from '../../common_services/dynamodb/dynamodbService'; export declare const getDeviceUuid: jest.Mock<any, any>; export declare class TransactionService { private dynamodbService; private envService; static getTransactions: jest.Mock<any, any>; static getTransaction: jest.Mock<any, any>; static requestTransaction: jest.Mock<any, any>; static subscribeTransactionResponse: jest.Mock<any, any>; static onTransactionStream: jest.Mock<any, any>; static onTransactionUpdate: jest.Mock<any, any>; constructor(dynamodbService: DynamodbService, envService: EnvironmentService); getTransactions: jest.Mock<any, any>; getTransaction: jest.Mock<any, any>; subscribeTransactionResponse: jest.Mock<any, any>; requestTransaction: jest.Mock<any, any>; onTransactionStream: jest.Mock<any, any>; onTransactionUpdate: jest.Mock<any, any>; }