import { Mention } from "../types/mention.type"; import { SimpleMention } from "../types/simple-mention.type"; export interface IWebMentionStorage { addPendingMention(mention: SimpleMention): Promise; getNextPendingMentions(): Promise; getMentionsForPage(page: string, type?: string): Promise; storeMentionForPage(page: string, mention: Mention): Promise; deleteMention(mention: SimpleMention): Promise; }