9 lines
281 B
TypeScript
9 lines
281 B
TypeScript
export const COMMENT_ENTITY_TYPE_VALUES = ["estimate", "resource"] as const;
|
|
|
|
export type CommentEntityType = (typeof COMMENT_ENTITY_TYPE_VALUES)[number];
|
|
|
|
export const COMMENT_ENTITY_LABELS: Record<CommentEntityType, string> = {
|
|
estimate: "estimate",
|
|
resource: "resource",
|
|
};
|