mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 14:01:45 +02:00
12 lines
172 B
TypeScript
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",
|
|
};
|