Files
docmost_custom/apps/server/src/integrations/queue/constants/queue.interface.ts
T

16 lines
301 B
TypeScript
Raw Normal View History

import { MentionNode } from "../../../common/helpers/prosemirror/utils";
export interface IPageBacklinkJob {
pageId: string;
workspaceId: string;
mentions: MentionNode[];
2025-03-17 11:00:23 +00:00
}
export interface IStripeSeatsSyncJob {
workspaceId: string;
}
export interface IPageHistoryJob {
pageId: string;
}