@test-org122/hypernet-core
Version:
Hypernet Core. Represents the SDK for running the Hypernet Protocol.
10 lines • 418 B
TypeScript
import { Message } from "./Message";
import { EthereumAddress } from "@test-org122/utils/src/objects/EthereumAddress";
export declare class MessageThread {
threadAddress: string;
userA: EthereumAddress;
userB: EthereumAddress;
messages: Message[];
constructor(threadAddress: string, userA: EthereumAddress, userB: EthereumAddress, messages: Message[]);
}
//# sourceMappingURL=MessageThread.d.ts.map