refactor: moves constants in one place

This commit is contained in:
eugene 2024-08-02 11:39:31 +01:00
parent 0ba3ae14a4
commit a1cb6c6caf

View File

@ -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'
}