From a1cb6c6cafb9b48e46a134ab0a5c273a92f9d448 Mon Sep 17 00:00:00 2001 From: Eugene Date: Fri, 2 Aug 2024 11:39:31 +0100 Subject: [PATCH] refactor: moves constants in one place --- src/utils/const.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/utils/const.ts b/src/utils/const.ts index e69de29..4f8c233 100644 --- a/src/utils/const.ts +++ b/src/utils/const.ts @@ -0,0 +1,6 @@ +import { MarkType } from '../types/drawing.ts' + +export const EMPTY: string = '' +export const MARK_TYPE_TRANSLATION: { [key: string]: string } = { + [MarkType.FULLNAME.valueOf()]: 'Full Name' +} \ No newline at end of file