UNPKG

@hashgraphonline/conversational-agent

Version:

Hashgraph Online conversational AI agent implementing HCS-10 communication, HCS-2 registries, and content inscription on Hedera. https://hol.org

15 lines (13 loc) 500 B
import { Bee } from '@ethersphere/bee-js'; import { GenericPluginContext } from 'hedera-agent-kit'; import * as utils from '../../utils'; declare let beeMock: jest.Mocked<Bee>; declare const swarmConfigMock: { beeApiUrl: string; beeFeedPK: string; autoAssignStamp: boolean; deferredUploadSizeThresholdMB: number; }; declare const contextMock: GenericPluginContext; declare const mockedUtils: jest.Mocked<typeof utils>; export { beeMock, contextMock, swarmConfigMock, mockedUtils, };