Files
docmost/apps/server/src/integrations/queue/constants/queue.interface.ts
T
Philipinho a5696bb8e8 - CTE approach
- Remove closure table usage
2026-01-11 04:36:32 +00:00

11 lines
244 B
TypeScript

import { MentionNode } from '../../../common/helpers/prosemirror/utils';
export interface IPageBacklinkJob {
pageId: string;
workspaceId: string;
mentions: MentionNode[];
}
export interface IStripeSeatsSyncJob {
workspaceId: string;
}