Files
plane/web/ee/constants/cycle.ts

12 lines
172 B
TypeScript

export enum CYCLE_ACTION {
START = "START",
STOP = "STOP",
}
export const ESTIMATE_TYPE: {
[key: string]: string;
} = {
issues: "work item",
points: "point",
};