Delete reactions when their parent message is deleted

This commit is contained in:
Scott Nonnenberg 2021-10-15 15:54:31 -07:00 committed by GitHub
parent e6ca3872d1
commit efde909484
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 185 additions and 8 deletions

View file

@ -389,6 +389,7 @@ export type DataInterface = {
targetTimestamp: number;
}) => Promise<void>;
addReaction: (reactionObj: ReactionType) => Promise<void>;
_getAllReactions: () => Promise<Array<ReactionType>>;
getUnprocessedCount: () => Promise<number>;
getAllUnprocessed: () => Promise<Array<UnprocessedType>>;