chore(core): add a few missing constants

This commit is contained in:
Elian Doran
2026-03-27 17:00:13 +02:00
parent 55f09fe21a
commit 050cdd0a85

View File

@@ -0,0 +1,10 @@
// TODO: Move this to a dedicated file someday.
export const ADMONITION_TYPE_MAPPINGS: Record<string, string> = {
note: "NOTE",
tip: "TIP",
important: "IMPORTANT",
caution: "CAUTION",
warning: "WARNING"
};
export const DEFAULT_ADMONITION_TYPE = ADMONITION_TYPE_MAPPINGS.note;