@fruitsjs/core
Version:
Principal package with functions and models for building Fruits Eco-Blockchain applications.
16 lines (15 loc) • 398 B
TypeScript
export declare class Attachment {
type: string;
constructor(type: string);
}
export declare class AttachmentMessage extends Attachment {
messageIsText: boolean;
message: string;
constructor(data?: any);
}
export declare class AttachmentEncryptedMessage extends Attachment {
data: string;
nonce: string;
isText: boolean;
constructor(data?: any);
}