8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
|
|
import { MentionNode } from "../../../common/helpers/prosemirror/utils";
|
||
|
|
|
||
|
|
|
||
|
|
export interface IPageBacklinkJob {
|
||
|
|
pageId: string;
|
||
|
|
workspaceId: string;
|
||
|
|
mentions: MentionNode[];
|
||
|
|
}
|