initial commit

This commit is contained in:
Sone
2026-05-19 18:46:16 +02:00
parent a92d70ca74
commit 7e67fa8ea0
33 changed files with 6316 additions and 3952 deletions
+6
View File
@@ -3,3 +3,9 @@ export enum OperationMode {
EDIT,
DELETE,
}
export const OperationModeLabels: Record<OperationMode, string> = {
[OperationMode.ADD]: "Add",
[OperationMode.EDIT]: "Edit",
[OperationMode.DELETE]: "Delete",
};