mirror of
https://github.com/docmost/docmost.git
synced 2026-06-22 13:21:34 +10:00
0f02261ee6
* Refactor: use queue for page history * feat: save multiple version contributors * display contributor avatars in history list * fix interval
16 lines
301 B
TypeScript
16 lines
301 B
TypeScript
import { MentionNode } from "../../../common/helpers/prosemirror/utils";
|
|
|
|
|
|
export interface IPageBacklinkJob {
|
|
pageId: string;
|
|
workspaceId: string;
|
|
mentions: MentionNode[];
|
|
}
|
|
|
|
export interface IStripeSeatsSyncJob {
|
|
workspaceId: string;
|
|
}
|
|
|
|
export interface IPageHistoryJob {
|
|
pageId: string;
|
|
} |