You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
539 B
TypeScript
18 lines
539 B
TypeScript
import { PubkeyType, WithGroupPubkey } from 'libsession_util_nodejs';
|
|
|
|
export type FindAllMessageFromSendersInConversationTypeArgs = WithGroupPubkey & {
|
|
toRemove: Array<PubkeyType>;
|
|
signatureTimestamp: number;
|
|
};
|
|
|
|
export type FindAllMessageHashesInConversationTypeArgs = WithGroupPubkey & {
|
|
messageHashes: Array<string>;
|
|
signatureTimestamp: number;
|
|
};
|
|
|
|
export type FindAllMessageHashesInConversationMatchingAuthorTypeArgs = WithGroupPubkey & {
|
|
messageHashes: Array<string>;
|
|
author: PubkeyType;
|
|
signatureTimestamp: number;
|
|
};
|