mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
24 lines
560 B
TypeScript
24 lines
560 B
TypeScript
import { TIssueRelationTypes } from "../types";
|
|
|
|
export const REVERSE_RELATIONS: { [key in TIssueRelationTypes]: TIssueRelationTypes } = {
|
|
blocked_by: "blocking",
|
|
blocking: "blocked_by",
|
|
start_before: "start_after",
|
|
start_after: "start_before",
|
|
finish_before: "finish_after",
|
|
finish_after: "finish_before",
|
|
relates_to: "relates_to",
|
|
duplicate: "duplicate",
|
|
};
|
|
|
|
export enum ETimelineRelation {
|
|
FS = "FINISH_TO_START",
|
|
SS = "START_TO_START",
|
|
FF = "FINISH_TO_FINISH",
|
|
}
|
|
|
|
export enum EDependencyPosition {
|
|
START = "START",
|
|
END = "END",
|
|
}
|