moves constants in one place

This commit is contained in:
eugene 2024-08-02 11:39:31 +01:00
parent bc08d14e4e
commit 2f1b88d697

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